You are here

function kaltura_cw_destination in Kaltura 7.2

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.3 kaltura.module \kaltura_cw_destination()

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

This function exposes a hook_cw_destination().

2 calls 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.
theme_kaltura_contribution_wizard_field in includes/kaltura.themeing.inc

File

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

Code

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