You are here

function appointment_calendar_node_info in Appointment Calendar 7

Implements hook_node_info().

File

./appointment_calendar.module, line 96
Adds Appointment calendar filtering and displays Availability.

Code

function appointment_calendar_node_info() {
  return array(
    'appointment_calendar' => array(
      'name' => t('Appointment Calendar'),
      'base' => 'appointment',
      'description' => t('A appointment calendar content type'),
      'has_title' => TRUE,
      'locked' => FALSE,
    ),
  );
}