You are here

function domain_theme in Domain Access 7.2

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

Implements hook_theme()

1 string reference to 'domain_theme'
domain_theme_domainbatch in domain_theme/domain_theme.module
Implements hook_domainbatch()

File

./domain.module, line 319
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_roles_form' => array(
      'render element' => 'form',
      'file' => 'domain.admin.inc',
    ),
  );
  return $themes;
}