You are here

function node_kaltura_mix_node_info in Kaltura 6.2

Same name and namespace in other branches
  1. 5 plugins/node_kaltura_mix/node_kaltura_mix.module \node_kaltura_mix_node_info()
  2. 6 plugins/node_kaltura_mix/node_kaltura_mix.module \node_kaltura_mix_node_info()

Implementation of hook_node_info().

File

plugins/node_kaltura_mix/node_kaltura_mix.module, line 205

Code

function node_kaltura_mix_node_info() {
  $description = t('A Kaltura Media Remix is an intuitive way to create a mashup of rich-media. Similar to the Kaltura Media Node, ' . 'a Remix allows upload and import of rich media, but adds the power of online video editing. Each Media Remix ' . 'encapsulates a "Remix" button linking to a simple to use online video editor that supports trimming videos, transitions, effects, sound-tracks, ' . 'remixing, reordering videos, overlays, and collaborative editing');
  return array(
    'kaltura_mix' => array(
      'name' => t('Kaltura Media Remix'),
      'module' => 'node_kaltura_mix',
      'description' => $description,
    ),
  );
}