You are here

function theme_domain_batch_title in Domain Access 5

Same name and namespace in other branches
  1. 6.2 domain.admin.inc \theme_domain_batch_title()
  2. 7.3 domain.admin.inc \theme_domain_batch_title()
  3. 7.2 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 925
Administration functions for the domain module.

Code

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