You are here

function yr_verdata_theme in Yr Weatherdata 6

Same name and namespace in other branches
  1. 6.2 yr_verdata.module \yr_verdata_theme()
  2. 7 yr_verdata.module \yr_verdata_theme()

Implementation of hook_theme().

File

./yr_verdata.module, line 170
yr_verdata.module This file provides the yr_verdata forecast module.

Code

function yr_verdata_theme() {
  return array(
    'yr_verdata_location_page' => array(
      'arguments' => array(
        'row' => NULL,
      ),
    ),
    'yr_verdata_location_block' => array(
      'arguments' => array(
        'rows' => NULL,
      ),
    ),
    'yr_verdata_location_sheet' => array(
      'arguments' => array(
        'name' => NULL,
        'tabs' => NULL,
        'info' => NULL,
        'links' => NULL,
        'sun' => NULL,
        'text_forecast' => NULL,
        'symbol_forecast' => NULL,
        'radar' => NULL,
        'credit' => NULL,
      ),
      'template' => 'yr-forecast-page',
    ),
    'yr_verdata_block_location' => array(
      'arguments' => array(
        'location' => NULL,
      ),
      'template' => 'yr-forecast-block-location',
    ),
  );
}