"1"); } list($module, $api) = func_get_args(); if ($module == "strongarm" && $api == "strongarm") { return array("version" => "1"); } } /** * Implements hook_node_info(). */ function timelinejs_feature_node_info() { $items = array( 'event' => array( 'name' => t('Event'), 'base' => 'node_content', 'description' => t('An event with a date.'), 'has_title' => '1', 'title_label' => t('Title'), 'help' => '', ), 'timeline' => array( 'name' => t('Timeline'), 'base' => 'node_content', 'description' => t('A timeline is a set of events.'), 'has_title' => '1', 'title_label' => t('Title'), 'help' => '', ), ); return $items; }