You are here

function domain_theme_theme in Domain Access 7.3

Same name and namespace in other branches
  1. 6.2 domain_theme/domain_theme.module \domain_theme_theme()
  2. 7.2 domain_theme/domain_theme.module \domain_theme_theme()

Implements hook_theme()

File

domain_theme/domain_theme.module, line 110
Domain Theme module for the Domain Access module group.

Code

function domain_theme_theme() {
  $themes = array(
    'domain_theme_reset' => array(
      'variables' => array(
        'domain' => array(),
      ),
    ),
    'domain_theme_form' => array(
      'render element' => 'form',
      'file' => 'domain_theme.admin.inc',
    ),
  );
  return $themes;
}