You are here

function kaltura_entry_create in Kaltura 7.3

Creates a new Kaltura Media Entry object.

Parameters

array $values: An array of values to set, keyed by property name. "kaltura_entryid" element has to be specified.

Return value

Entity A new instance of the Kaltura Media Entry.

4 calls to kaltura_entry_create()
field_kaltura_field_presave in plugins/field_kaltura/field_kaltura.module
Implements hook_field_presave().
kaltura_import_entries in ./kaltura.module
Cron worker callback: Imports remote Kaltura Media entries into local system.
kaltura_notify_entry_add in includes/kaltura.notification.inc
Adds entry to the kaltura table via notification.
kaltura_uploader_form_submit in ./kaltura_upload.inc
Form submission handler for kaltura_uploader_form().

File

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

Code

function kaltura_entry_create(array $values) {
  return entity_create('kaltura_entry', $values);
}