Mercurial > hg > rr-repo
view rrr_features.features.inc @ 22:a3fd7a630eba
fixed menu items
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Fri, 06 Dec 2013 11:57:55 +0000 |
parents | a0535331f47e |
children | 517036c6c711 |
line wrap: on
line source
<?php /** * @file * rrr_features.features.inc */ /** * Implements hook_views_api(). */ function rrr_features_views_api($module = NULL, $api = NULL) { return array("api" => "3.0"); } /** * Implements hook_node_info(). */ function rrr_features_node_info() { $items = array( 'page' => array( 'name' => t('static page'), 'base' => 'node_content', 'description' => t('a static page used for contacts, about us, welcome page, etc.'), 'has_title' => '1', 'title_label' => t('Title'), 'help' => '', ), ); return $items; }