Mercurial > hg > rr-repo
view rrr_features.features.inc @ 24:517036c6c711
updated features
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Fri, 06 Dec 2013 14:46:42 +0000 |
parents | a0535331f47e |
children | 9b58e6b687c1 |
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('Use <em>basic pages</em> for your static content, such as an \'About us\' page.'), 'has_title' => '1', 'title_label' => t('Title'), 'help' => '', ), ); return $items; }