1.20.x installer.authorize.inc | _installer_batch_create_message(&$project_results, $message, $success = TRUE) |
Creates a structure of log messages.
Parameters
array $project_results: An associative array of results from the batch operation.
string $message: A string containing a log message.
bool $success: (optional) TRUE if the operation the message is about was a success, FALSE if there were errors. Defaults to TRUE.
File
- modules/
installer/ installer.authorize.inc, line 317 - Callbacks and related functions invoked by authorize.php to update projects.
Code
function _installer_batch_create_message(&$project_results, $message, $success = TRUE) {
$project_results[] = array('message' => $message, 'success' => $success);
}