Mercurial > hg > rr-repo
view rrr_features.features.inc @ 29:11991bef8cf2 tip master
updated modules (drush up)
author | root <root@guanciale.(none)> |
---|---|
date | Tue, 10 Dec 2013 10:58:16 +0000 |
parents | 9b58e6b687c1 |
children |
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; }