You are here

function domain_theme_theme in Domain Access 6.2

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

Implement hook_theme()

File

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

Code

function domain_theme_theme() {
  $themes = array(
    'domain_theme_reset' => array(
      'arguments' => array(
        'domain' => array(),
      ),
    ),
  );
  return $themes;
}