You are here

function kaltura_cw_destination in Kaltura 7.3

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

Chooses what URL the user will be redirected to after AddEntry in the CW.

This function exposes a hook_cw_destination().

1 call to kaltura_cw_destination()
field_kaltura_add_modal_js in plugins/field_kaltura/field_kaltura.module
Adds js function to handel the callback from the flush uploader.

File

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

Code

function kaltura_cw_destination() {
  $url = kaltura_invoke('cw_destination');
  return $url ? $url[0] : url('kaltura/entries');
}