function node_kaltura_entry_node_info in Kaltura 6
Same name and namespace in other branches
- 5 plugins/node_kaltura_entry/node_kaltura_entry.module \node_kaltura_entry_node_info()
- 6.2 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 226
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, such as YouTube, ' . 'MySpace, Flickr, CCMixter, Jamendo, New York Public Library, any URL on the web etc.'),
),
);
}