You are here

function rave_alerts_theme in RAVE Alerts 1.0.x

Same name and namespace in other branches
  1. 7 rave_alerts.module \rave_alerts_theme()

Implements hook_theme().

File

./rave_alerts.module, line 175
CU Alerts module

Code

function rave_alerts_theme($existing, $type, $theme, $path) {
  return array(
    'rave_alerts_alerts' => array(
      'variables' => array(
        'data' => NULL,
        'remote_url' => NULL,
      ),
      'template' => 'rave_alerts',
    ),
  );
}