public BatchController::batchPageTitle()
The _title_callback for the system.batch_page.normal route.
Return value
string The page title.
File
- core/modules/system/src/Controller/BatchController.php, line 79
Class
- BatchController
- Controller routines for batch routes.
Namespace
Drupal\system\Controller
Code
public function batchPageTitle() {
$current_set = _batch_current_set();
return !empty($current_set['title']) ? $current_set['title'] : '';
}
Please login to continue.