| 7 theme.maintenance.inc | theme_authorize_message($variables) |
| 8 theme.maintenance.inc | theme_authorize_message($variables) |
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()
File
- includes/
theme.maintenance.inc, line 201 - Theming for maintenance pages.
Code
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;
}
Login or register to post comments