You are here

function domain_theme in Domain Access 7.3

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

Implements hook_theme().

4 string references to 'domain_theme'
domain_theme_domain_batch in domain_theme/domain_theme.domain.inc
Implements hook_domain_batch().
domain_theme_features_api in domain_theme/domain_theme.module
Implements hook_features_api().
domain_theme_features_export in domain_theme/domain_theme.features.inc
Implements hook_features_export().
domain_theme_features_rebuild in domain_theme/domain_theme.features.inc
Implements hook_features_rebuild().

File

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

Code

function domain_theme($existing, $type, $theme, $path) {
  $themes = array(
    'domain_batch_form' => array(
      'render element' => 'form',
      'file' => 'domain.admin.inc',
    ),
    'domain_batch_title' => array(
      'variables' => array(
        'batch' => array(),
      ),
      'file' => 'domain.admin.inc',
    ),
    'domain_nodes_form' => array(
      'render element' => 'form',
      'file' => 'domain.admin.inc',
    ),
    'domain_roles_form' => array(
      'render element' => 'form',
      'file' => 'domain.admin.inc',
    ),
    'domain_overview_form' => array(
      'render element' => 'form',
      'file' => 'domain.admin.inc',
    ),
  );
  return $themes;
}