"1"); } } /** * Implements hook_node_info(). */ function timelinejs_feature_node_info() { $items = array( 'event' => array( 'name' => t('Evento'), 'base' => 'node_content', 'description' => t('Um evento com data.'), 'has_title' => '1', 'title_label' => t('Título'), 'help' => '', ), 'timeline' => array( 'name' => t('Linha do tempo'), 'base' => 'node_content', 'description' => t('Uma linha do tempo é um conjunto de eventos.'), 'has_title' => '1', 'title_label' => t('Título'), 'help' => '', ), ); return $items; }