You are here

public function QueuerFormController::detailFormTitle in Purge 8.3

Route title callback.

Parameters

string $id: The plugin id of the queuer to retrieve.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The page title.

1 string reference to 'QueuerFormController::detailFormTitle'
purge_ui.routing.yml in modules/purge_ui/purge_ui.routing.yml
modules/purge_ui/purge_ui.routing.yml

File

modules/purge_ui/src/Controller/QueuerFormController.php, line 159

Class

QueuerFormController
Controller for queuer configuration forms.

Namespace

Drupal\purge_ui\Controller

Code

public function detailFormTitle($id) {
  return $this->purgeQueuers
    ->getPlugins()[$id]['label'];
}