You are here

function calendar_systems_theme in Calendar Systems 6.2

Same name and namespace in other branches
  1. 8 calendar_systems.module \calendar_systems_theme()
  2. 6.3 calendar_systems.module \calendar_systems_theme()
  3. 6 calendar_systems.module \calendar_systems_theme()
  4. 7.3 calendar_systems.module \calendar_systems_theme()
  5. 7 calendar_systems.module \calendar_systems_theme()
  6. 7.2 calendar_systems.module \calendar_systems_theme()

Implements hook_theme().

File

./calendar_systems.module, line 153
Contains Calendar Systems module hooks, helpers and API functions.

Code

function calendar_systems_theme() {
  return array(
    'calendar_systems_calendars_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'calendar_systems.admin.inc',
    ),
    'calendar_systems_languages_overview_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'calendar_systems.admin.inc',
    ),
  );
}