You are here

function visitors_theme in Visitors 8.2

Same name and namespace in other branches
  1. 8 visitors.module \visitors_theme()
  2. 7.2 visitors.module \visitors_theme()
  3. 7 visitors.module \visitors_theme()
  4. 7.0 visitors.module \visitors_theme()

Implements hook_theme().

File

./visitors.module, line 26
Logs visitors for your site.

Code

function visitors_theme() {
  return array(
    'visitors_jqplot' => array(
      'template' => 'visitors_jqplot',
      'variables' => array(
        'path' => null,
        'x' => null,
        'y' => null,
        'width' => null,
        'height' => null,
      ),
    ),
  );
}