You are here

function paragraphs_pack_test_node_info in Paragraphs pack 7

Implements hook_node_info().

File

tests/paragraphs_pack_test.features.inc, line 19
paragraphs_pack_test.features.inc

Code

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