You are here

function notifications_object in Notifications 6.4

Same name and namespace in other branches
  1. 7 notifications.module \notifications_object()

Entry point for the object API

Parameters

Variable number of arguments, the first one is the notifications_object_* function to invoke:

File

./notifications.module, line 949
Notifications module

Code

function notifications_object() {
  $args = func_get_args();
  $function = 'notifications_object_' . array_shift($args);
  if (!function_exists($function)) {
    notifications_include('object.inc');
  }
  return call_user_func_array($function, $args);
}