You are here

function notifications_autoload_info in Notifications 6.4

Same name and namespace in other branches
  1. 6.3 notifications.module \notifications_autoload_info()

Implementation of hook_autoload_info().

File

./notifications.module, line 24
Notifications module

Code

function notifications_autoload_info() {
  return array(
    'Notifications_Event' => array(
      'file' => 'includes/notifications_event.class.inc',
    ),
    'Notifications_Subscription' => array(
      'file' => 'includes/notifications_subscription.class.inc',
    ),
    'Notifications_Message' => array(
      'file' => 'includes/notifications_message.class.inc',
    ),
    'Notifications_Queue' => array(
      'file' => 'includes/notifications_queue.class.inc',
    ),
  );
}