8896c13c6dec4b676e497d0a54c76db5d78e9b0e
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / xmlrpc_alter.twig
1 /**
2  * Implements hook_xmlrpc_alter().
3  */
4 function {{ machine_name }}_xmlrpc_alter(&$methods) {
5   // Directly change a simple method.
6   $methods['drupal.login'] = 'mymodule_login';
7
8   // Alter complex definitions.
9   foreach ($methods as $key => &$method) {
10     // Skip simple method definitions.
11     if (!is_int($key)) {
12       continue;
13     }
14     // Perform the wanted manipulation.
15     if ($method[0] == 'drupal.site.ping') {
16       $method[1] = 'mymodule_directory_ping';
17     }
18   }
19 }