You are here

function oa_notifications_theme in Open Atrium Notifications 7.2

Implements hook_theme().

File

./oa_notifications.module, line 70

Code

function oa_notifications_theme() {
  return array(
    'oa_notifications_view' => array(
      'template' => 'oa-notifications-view',
      'variables' => array(
        'node' => NULL,
        'notifications' => array(),
      ),
      'path' => drupal_get_path('module', 'oa_notifications') . '/templates',
    ),
  );
}