You are here

function certificate_node_info in Certificate 7.2

Same name and namespace in other branches
  1. 6.2 certificate.module \certificate_node_info()
  2. 6 certificate.module \certificate_node_info()
  3. 3.x certificate.module \certificate_node_info()

Implements hook_node_info().

File

./certificate.module, line 11
Certificate module.

Code

function certificate_node_info() {
  $items = array(
    'certificate' => array(
      'name' => t('Certificate'),
      'base' => 'certificate',
      'description' => t('A tokenized certificate template that will be converted to a PDF and displayed to users who complete accredited activities.'),
      'has_title' => TRUE,
      'title_label' => t('Title'),
      'has_body' => TRUE,
      'body_label' => t('Certificate Body'),
      'min_word_count' => '0',
      'help' => '',
      'locked' => TRUE,
    ),
  );
  return $items;
}