You are here

function node_kaltura_entry_node_info in Kaltura 6.2

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

Implementation of hook_node_info().

File

plugins/node_kaltura_entry/node_kaltura_entry.module, line 258

Code

function node_kaltura_entry_node_info() {
  return array(
    'kaltura_entry' => array(
      'name' => t('Kaltura Media Node'),
      'module' => 'node_kaltura_entry',
      'description' => t('A Kaltura Media Node is a simple method for creating and displaying rich media (Video, Audio or Image). ' . 'It allows upload from local computer and supports almost all video and audio formats, as well as recording directly from webcam. ' . 'In addition it supports easy import of all rich media (video, audio, pictures...) from other sites and social networks. '),
    ),
  );
}