You are here

function opigno_features_node_info in Opigno 7.0

Implements hook_node_info().

File

modules/opigno_features/opigno_features.features.inc, line 107
opigno_features.features.inc

Code

function opigno_features_node_info() {
  $items = array(
    'calendar_entry' => array(
      'name' => t('Calendar entry'),
      'base' => 'node_content',
      'description' => t('<em>Calendar entries</em>'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
    'course' => array(
      'name' => t('Course'),
      'base' => 'node_content',
      'description' => t('A <em>course</em> can contain <em>quizzes</em>, <em>wikis</em> and other tools necessary for teaching a certain topic.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
    'wiki' => array(
      'name' => t('Wiki page'),
      'base' => 'node_content',
      'description' => t('<em>Wikis</em> have a built-in hierarchical navigation. Use for handbooks or tutorials.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
    'workgroup' => array(
      'name' => t('Workgroup'),
      'base' => 'node_content',
      'description' => t('A <em>workgroup</em> allows students and/or teachers to work together on a specific task. <em>Workgroups</em> are created inside <em>courses</em> or even other <em>workgroups</em>.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  return $items;
}