function theme_authorize_message
Returns HTML for a single log message from the authorize.php batch operation.
Parameters
$variables: An associative array containing:
- message: The log message.
- success: A boolean indicating failure or success.
Related topics
1 theme call to theme_authorize_message()
- theme_authorize_report in drupal-7.x/
includes/ theme.maintenance.inc - Returns HTML for a results report of an operation run by authorize.php.
Archivo
- drupal-7.x/
includes/ theme.maintenance.inc, line 201 - Theming for maintenance pages.
Código
function theme_authorize_message($variables) {
$message = $variables['message'];
$success = $variables['success'];
if ($success) {
$item = array(
'data' => $message,
'class' => array('success'),
);
}
else {
$item = array(
'data' => '<strong>' . $message . '</strong>',
'class' => array('failure'),
);
}
return $item;
}