123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- function clameurs_ctools_plugin_api($module = NULL, $api = NULL) {
- if ($module == "field_group" && $api == "field_group") {
- return array("version" => "1");
- }
- if ($module == "strongarm" && $api == "strongarm") {
- return array("version" => "1");
- }
- }
- 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;
- }
|