You are here

function classy_paragraphs_test_node_info in Classy paragraphs 7

Implements hook_node_info().

File

tests/classy_paragraphs_test.features.inc, line 10
classy_paragraphs_test.features.inc

Code

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