You are here

function kaltura_entry_save in Kaltura 7.3

Saves changes to a Kaltura Media Entry or adds a new entry.

Parameters

Entity $entity: The Entity object to be saved.

Return value

int|false SAVED_NEW or SAVED_UPDATED is returned depending on the operation performed. If there is no information how to save the entity, FALSE is returned.

9 calls to kaltura_entry_save()
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_metadata_editor_form_submit in ./kaltura.module
Submit function for the metadata editing form.
kaltura_notify_blocked in includes/kaltura.notification.inc
Helper function to block notification.
kaltura_notify_delete in includes/kaltura.notification.inc
Helper function to delete notification.

... See full list

File

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

Code

function kaltura_entry_save(Entity $entity) {
  return entity_save('kaltura_entry', $entity);
}