You are here

function feedapi_stat_theme in FeedAPI 6

Implementation of hook_theme().

File

feedapi_stat/feedapi_stat.module, line 20
Visualize standard FeedAPI statistics logs.

Code

function feedapi_stat_theme() {
  return array(
    'feedapi_stat' => array(
      'arguments' => array(
        'node' => NULL,
      ),
    ),
    'feedapi_stat_sparkline' => array(
      'arguments' => array(
        'data' => NULL,
        'width' => NULL,
        'height' => NULL,
      ),
    ),
    'feedapi_stat_format' => array(
      'arguments' => array(
        'value' => NULL,
        'type' => NULL,
      ),
    ),
  );
}