"1"); } if ($module == "strongarm" && $api == "strongarm") { return array("version" => "1"); } } /** * Implements hook_node_info(). */ function clameurs_node_info() { $items = array( 'documentair' => array( 'name' => t('Documentair'), 'base' => 'node_content', 'description' => '', 'has_title' => '1', 'title_label' => t('Titre'), 'help' => '', ), 'episode' => array( 'name' => t('Épisode'), 'base' => 'node_content', 'description' => '', 'has_title' => '1', 'title_label' => t('Titre'), 'help' => '', ), 'thematique' => array( 'name' => t('Thematique'), 'base' => 'node_content', 'description' => '', 'has_title' => '1', 'title_label' => t('Titre'), 'help' => '', ), ); drupal_alter('node_info', $items); return $items; }