You are here

function theme_domain_batch_title in Domain Access 7.2

Same name and namespace in other branches
  1. 5 domain_admin.inc \theme_domain_batch_title()
  2. 6.2 domain.admin.inc \theme_domain_batch_title()
  3. 7.3 domain.admin.inc \theme_domain_batch_title()

Theme function for displaying batch editing.

Parameters

$batch: The batch function to be performed.

1 theme call to theme_domain_batch_title()
domain_batch_form in ./domain.admin.inc
Generate the form data for a batch update.

File

./domain.admin.inc, line 914
Administration functions for the domain module.

Code

function theme_domain_batch_title($variables) {
  $output = '';
  $output = '<p>' . $variables['batch']['#meta_description'] . '</p>';
  if (!empty($variables['batch']['#required'])) {
    $output .= '<p><em>' . t('All values are required.') . '</em></p>';
  }
  return $output;
}