function xmlrpc_test_simpleStructReturnTest
1 call to xmlrpc_test_simpleStructReturnTest()
- XMLRPCValidator1IncTestCase::testValidator1 in drupal-7.x/
modules/ simpletest/ tests/ xmlrpc.test - Run validator1 tests.
1 string reference to 'xmlrpc_test_simpleStructReturnTest'
- xmlrpc_test_xmlrpc in drupal-7.x/
modules/ simpletest/ tests/ xmlrpc_test.module - Implements hook_xmlrpc().
Archivo
- drupal-7.x/
modules/ simpletest/ tests/ xmlrpc_test.module, line 44
Código
function xmlrpc_test_simpleStructReturnTest($number) {
return array(
"times10" => ($number * 10),
"times100" => ($number * 100),
"times1000" => ($number * 1000),
);
}