mediamosa_node_info

Versions
mediamosa-21
mediamosa_node_info()

Implements hook_node_info().

Code

sites/all/modules/mediamosa/core/node/mediamosa_node.inc, line 202

<?php
function mediamosa_node_info() {
  return array(
    mediamosa_node::MEDIAMOSA_NODE_TYPE_TRANSCODE_PROFILE => array(
      'name' => t('MediaMosa transcode profile'),
      'base' => mediamosa_node::MEDIAMOSA_NODE_TYPE_TRANSCODE_PROFILE,
      'has_body' => FALSE,
      'description' => t('The transcode profile contains information about the codec type and settings for a video transcoding.'),
    ),
    mediamosa_node::MEDIAMOSA_NODE_TYPE_SERVER => array(
      'name' => t('MediaMosa server'),
      'base' => mediamosa_node::MEDIAMOSA_NODE_TYPE_SERVER,
      'has_body' => FALSE,
      'description' => t('MediaMosa servers execute jobs for transcoding, uploading and other related work.'),
    ),
    mediamosa_node::MEDIAMOSA_NODE_TYPE_APP => array(
      'name' => t('MediaMosa client application'),
      'base' => mediamosa_node::MEDIAMOSA_NODE_TYPE_APP,
      'has_body' => FALSE,
      'description' => t('MediaMosa client applications are clients that can login onto MediaMosa and execute REST calls. All data stored is stored under its client application ID; giving each client application its own database of assets, mediafiles etc.'),
    ),
    mediamosa_node::MEDIAMOSA_NODE_TYPE_SETTINGS => array(
      'name' => t('MediaMosa settings'),
      'base' => mediamosa_node::MEDIAMOSA_NODE_TYPE_SETTINGS,
      'has_body' => FALSE,
      'description' => t('MediaMosa settings node type contains a copy of the configuration settings for revision usage.'),
    ),
  );
}
?>