Mercurial > hg > rr-repo
view rrr_features.features.inc @ 27:56d0fe6b6acb
Merge branch 'master' of https://github.com/danieleb/rrr
author | root <root@guanciale.(none)> |
---|---|
date | Mon, 09 Dec 2013 12:08:10 +0000 |
parents | 517036c6c711 |
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; }