You are here

public function ContextDuplicateForm::getDescription in Context 8.4

File

modules/context_ui/src/Form/ContextDuplicateForm.php, line 54

Class

ContextDuplicateForm
Form for duplicating Context.

Namespace

Drupal\context_ui\Form

Code

public function getDescription() {
  return $this
    ->t('This action will duplicate the %label context.', [
    '%label' => $this->entity
      ->getLabel(),
  ]);
}