3); } elseif ($module == "strongarm" && $api == "strongarm") { return array("version" => 1); } } /** * Implementation of hook_node_info(). */ function atrium_shoutbox_node_info() { $items = array( 'shoutbox' => array( 'name' => t('Shoutbox'), 'module' => 'features', 'description' => t('A shoutbox for informal message blasts.'), 'has_title' => '1', 'title_label' => t('Name'), 'has_body' => '1', 'body_label' => t('Description'), 'min_word_count' => '0', 'help' => '', ), ); return $items; } /** * Implementation of hook_views_api(). */ function atrium_shoutbox_views_api() { return array( 'api' => '2', ); }