You are here

function mass_contact_node_info in Mass Contact 6

Implementation of hook_node_info().

File

./mass_contact.module, line 239
This is the main code file for the Mass Contact module. This module enables users to contact multiple users through selected roles.

Code

function mass_contact_node_info() {
  return array(
    'mass_contact' => array(
      'name' => t('Mass Contact Message'),
      'module' => 'node',
      'description' => t("Archived copy of mass e-mails sent from this site."),
      'has_title' => TRUE,
      'title_label' => t('Subject'),
      'has_body' => TRUE,
      'body_label' => t('Message Body'),
      'custom' => TRUE,
      'locked' => FALSE,
    ),
  );
}