function basicevent_node_info in Event 5
Implementation of hook_node_info().
File
- contrib/
basicevent.module, line 11 - An extremly simple module to implement the event API.
Code
function basicevent_node_info() {
return array(
'event' => array(
'name' => t('Event'),
'module' => 'basicevent',
'description' => t('An event is a story which can be given a start and end date, thus appearing in the events calendar.'),
),
);
}