1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<?php
/**
* @file
* muamba_system.features.inc
*/
/**
* Implements hook_ctools_plugin_api().
*/
function muamba_system_ctools_plugin_api() {
list($module, $api) = func_get_args();
if ($module == "strongarm" && $api == "strongarm") {
return array("version" => "1");
}
}
/**
* Implements hook_node_info().
*/
function muamba_system_node_info() {
$items = array(
'clube' => array(
'name' => t('Clube'),
'base' => 'node_content',
'description' => t('Clube de Muamba'),
'has_title' => '1',
'title_label' => t('Nome'),
'help' => '',
),
'muamba' => array(
'name' => t('Muamba'),
'base' => 'node_content',
'description' => t('Equipamento ou recurso em geral.'),
'has_title' => '1',
'title_label' => t('Nome'),
'help' => '',
),
);
return $items;
}
|