You are here

function kaltura_invoke in Kaltura 7.3

Same name and namespace in other branches
  1. 5 kaltura.module \kaltura_invoke()
  2. 6.2 kaltura.module \kaltura_invoke()
  3. 6 kaltura.module \kaltura_invoke()
  4. 7.2 kaltura.module \kaltura_invoke()

Implements module_invoke().

Used to call hooks exposed by kaltura which other module implements.

2 calls to kaltura_invoke()
kaltura_cw_destination in ./kaltura.module
Chooses what URL the user will be redirected to after AddEntry in the CW.
kaltura_notification_handler in includes/kaltura.notification.inc
This is the callback function for the kaltura/notification_handler URL.

File

./kaltura.module, line 223
Kaltura integration module - core functions.

Code

function kaltura_invoke($hook, $data = NULL) {
  $hook = 'kaltura_' . $hook;
  $return = module_invoke_all($hook, $data);
  return $return;
}