BatchController::batchPageTitle

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'] : '';
}
doc_Drupal
2016-10-29 08:46:04
Comments
Leave a Comment

Please login to continue.