paragraphs_id_test.features.inc in Paragraphs ID 7        
                          
                  
                        
  
  
  
File
  tests/paragraphs_id_test/paragraphs_id_test.features.inc
  
    View source  
  <?php
function paragraphs_id_test_ctools_plugin_api($module = NULL, $api = NULL) {
  if ($module == "strongarm" && $api == "strongarm") {
    return array(
      "version" => "1",
    );
  }
}
function paragraphs_id_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;
}
function paragraphs_id_test_paragraphs_info() {
  $items = array(
    'pp_test_paragraph_bundle' => array(
      'name' => 'Test Paragraph Bundle',
      'bundle' => 'pp_test_paragraph_bundle',
      'locked' => '1',
    ),
  );
  return $items;
}