function hook_restws_meta_controls_alter in RESTful Web Services 7.2
Alter the list of allowed meta controls.
Parameters
array $controls: A list of allowed meta controlers
Related topics
1 invocation of hook_restws_meta_controls_alter()
- restws_meta_controls in ./
restws.module - Return all available meta controls.
File
- ./
restws.api.php, line 155 - This file contains no working PHP code; it exists to provide additional documentation for doxygen as well as to document hooks in the standard Drupal manner.
Code
function hook_restws_meta_controls_alter(&$controls) {
$controls['deep-load-refs'] = 'deep-load-refs';
}