function tripal_contact_node_info
2.x tripal_contact.chado_node.inc | tripal_contact_node_info() |
3.x tripal_contact.chado_node.inc | tripal_contact_node_info() |
1.x tripal_contact.module | tripal_contact_node_info() |
Implementation of hook_tripal_contact_node_info().
This node_info, is a simple node that describes the functionallity of the module.
File
- tripal_contact/
tripal_contact.module, line 59 - This file contains the basic functions needed for this drupal module. The drupal tripal_contact module maps directly to the chado X module.
Code
function tripal_contact_node_info() {
return array(
'chado_contact' => array(
'name' => t('Contact'),
'module' => 'chado_contact',
'description' => t('A contact from the Chado database'),
'title_label' => t('Article Title'),
'body_label' => t('Abstract'),
'has_title' => TRUE,
'has_body' => FALSE,
),
);
}