You are here

function domain_theme in Domain Access 6.2

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

Implement hook_theme()

5 string references to 'domain_theme'
domain_prefix_disallow in domain_prefix/domain_prefix.admin.inc
Names of tables explicitly not allowed to be copied
domain_theme_domainbatch in domain_theme/domain_theme.module
Implement hook_domainbatch()
domain_theme_install in domain_theme/domain_theme.install
Implement hook_install()
domain_theme_uninstall in domain_theme/domain_theme.install
Implement hook_uninstall()
domain_theme_update_6200 in domain_theme/domain_theme.install
Update the table structure

File

./domain.module, line 281
Core module functions for the Domain Access suite.

Code

function domain_theme() {
  $themes = array(
    'domain_admin_users_form' => array(
      'arguments' => array(
        'form' => array(),
      ),
      'file' => 'domain.admin.inc',
    ),
    'domain_batch_form' => array(
      'arguments' => array(
        'form' => array(),
      ),
      'file' => 'domain.admin.inc',
    ),
    'domain_batch_title' => array(
      'arguments' => array(
        'batch' => array(),
      ),
      'file' => 'domain.admin.inc',
    ),
    'domain_roles_form' => array(
      'arguments' => array(
        'form' => array(),
      ),
      'file' => 'domain.admin.inc',
    ),
  );
  return $themes;
}