You are here

function notifications_autoload_info in Notifications 6.3

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

Implementation of hook_autoload_info().

File

./notifications.module, line 32
Notifications module

Code

function notifications_autoload_info() {
  return array(
    'Notifications_Message' => array(
      'file' => 'classes/notifications_message.class.inc',
    ),
    'Notifications_Template' => array(
      'file' => 'classes/notifications_template.class.inc',
    ),
    'Notifications_Template_Engine' => array(
      'file' => 'classes/notifications_template.class.inc',
    ),
  );
}