You are here

function bricks_default_node_info in Bricks​ 7.5

Implements hook_node_info().

File

bricks_default/bricks_default.features.inc, line 70
bricks_default.features.inc

Code

function bricks_default_node_info() {
  $items = array(
    'page' => array(
      'name' => t('Page'),
      'base' => 'node_content',
      'description' => '',
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  drupal_alter('node_info', $items);
  return $items;
}