update_fetch_data_finished($success, $results)
Batch callback: Performs actions when all fetch tasks have been completed.
Parameters
$success: TRUE if the batch operation was successful; FALSE if there were errors.
$results: An associative array of results from the batch operation, including the key 'updated' which holds the total number of projects we fetched available update data for.
File
- core/modules/update/update.module, line 409
- Handles updates of Drupal core and contributed projects.
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | function update_fetch_data_finished( $success , $results ) { if ( $success ) { if (! empty ( $results )) { if (! empty ( $results [ 'updated' ])) { drupal_set_message(\Drupal::translation()->formatPlural( $results [ 'updated' ], 'Checked available update data for one project.' , 'Checked available update data for @count projects.' )); } if (! empty ( $results [ 'failures' ])) { drupal_set_message(\Drupal::translation()->formatPlural( $results [ 'failures' ], 'Failed to get available update data for one project.' , 'Failed to get available update data for @count projects.' ), 'error' ); } } } else { drupal_set_message(t( 'An error occurred trying to get available update data.' ), 'error' ); } } |
Please login to continue.