You are here

fillpdf_test_webform.features.inc in FillPDF 7

File

tests/modules/fillpdf_test_webform/fillpdf_test_webform.features.inc
View source
<?php

/**
 * @file
 * fillpdf_test_webform.features.inc
 */

/**
 * Implements hook_node_info().
 */
function fillpdf_test_webform_node_info() {
  $items = array(
    'webform' => array(
      'name' => t('Webform'),
      'base' => 'node_content',
      'description' => t('Create a new form or questionnaire accessible to users. Submission results and statistics are recorded and accessible to privileged users.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  drupal_alter('node_info', $items);
  return $items;
}

Functions