You are here

function mostpopular_theme in Drupal Most Popular 6

Same name and namespace in other branches
  1. 7 mostpopular.module \mostpopular_theme()

Implements hook_theme().

File

./mostpopular.module, line 30

Code

function mostpopular_theme() {
  return array(
    'mostpopular_config_intervals_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'mostpopular.admin.inc',
    ),
    'mostpopular_config_services_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'mostpopular.admin.inc',
    ),
    'mostpopular_config_service_form_throttles' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'mostpopular.admin.inc',
    ),
    'mostpopular_service_status' => array(
      'arguments' => array(
        'status' => 0,
      ),
      'file' => 'mostpopular.admin.inc',
    ),
    'mostpopular_page' => array(
      'arguments' => array(
        'sid' => 1,
        'iid' => 1,
      ),
      'file' => 'mostpopular.block.inc',
    ),
    'mostpopular_block' => array(
      'arguments' => array(
        'sid' => 1,
        'iid' => 1,
      ),
      'file' => 'mostpopular.block.inc',
    ),
    'mostpopular_services' => array(
      'arguments' => array(
        'sid' => 1,
        'iid' => 1,
      ),
      'file' => 'mostpopular.block.inc',
    ),
    'mostpopular_intervals' => array(
      'arguments' => array(
        'sid' => 1,
        'iid' => 1,
      ),
      'file' => 'mostpopular.block.inc',
    ),
    'mostpopular_items' => array(
      'arguments' => array(
        'items' => array(),
        'sid' => 1,
        'iid' => 1,
      ),
      'file' => 'mostpopular.block.inc',
    ),
    'mostpopular_item' => array(
      'arguments' => array(
        'item' => NULL,
        'sid' => 1,
        'iid' => 1,
      ),
      'file' => 'mostpopular.block.inc',
    ),
    'mostpopular_items_none' => array(
      'file' => 'mostpopular.block.inc',
    ),
  );
}