function _messaging_callback in Messaging 6
Same name and namespace in other branches
- 6.4 messaging.module \_messaging_callback()
- 6.2 messaging.module \_messaging_callback()
- 6.3 messaging.module \_messaging_callback()
Build callback structure to be invoked later
Parameters
$function: Function name
$arg1, $arg1, $arg3:
3 calls to _messaging_callback()
- Messaging_API_Tests::testMessagingBasicAPI in tests/
messaging_api.test - Exercise basic API functions
- messaging_debug_messaging_methods_alter in messaging_debug/
messaging_debug.module - Implementation of hook_messaging_methods_alter()
- messaging_notify_messaging_methods_alter in messaging_notify/
messaging_notify.module - Implementation of hook_messaging_methods_alter()
File
- ./
messaging.module, line 883
Code
function _messaging_callback() {
$args = func_get_args();
if (count($args) > 1) {
// Array with function name, param1, param2..
return $args;
}
else {
// Simple string with function name
return array_shift($args);
}
}