function _update_batch_create_message

7.x update.authorize.inc _update_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.

1 call to _update_batch_create_message()
update_authorize_batch_copy_project in drupal-7.x/modules/update/update.authorize.inc
Batch callback: Copies project to its proper place when authorized to do so.

File

drupal-7.x/modules/update/update.authorize.inc, line 307
Callbacks and related functions invoked by authorize.php to update projects.

Code

function _update_batch_create_message(&$project_results, $message, $success = TRUE) {
  $project_results[] = array('message' => $message, 'success' => $success);
}