X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fmodules%2Fcontrib%2Fenvironment_indicator%2Fsrc%2FEnvironmentIndicatorForm.php;fp=web%2Fmodules%2Fcontrib%2Fenvironment_indicator%2Fsrc%2FEnvironmentIndicatorForm.php;h=143eebfdf44b7d9d7a7fe1d69f70837b29dce5e6;hp=1204b8165818811f6acce0eda638422fb7ccceb5;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/web/modules/contrib/environment_indicator/src/EnvironmentIndicatorForm.php b/web/modules/contrib/environment_indicator/src/EnvironmentIndicatorForm.php index 1204b8165..143eebfdf 100644 --- a/web/modules/contrib/environment_indicator/src/EnvironmentIndicatorForm.php +++ b/web/modules/contrib/environment_indicator/src/EnvironmentIndicatorForm.php @@ -17,7 +17,7 @@ class EnvironmentIndicatorForm extends EntityForm { $form['name'] = [ '#type' => 'textfield', - '#title' => t('Name'), + '#title' => $this->t('Name'), '#default_value' => $environment_switcher->label(), ]; $form['machine'] = [ @@ -31,20 +31,20 @@ class EnvironmentIndicatorForm extends EntityForm { ]; $form['url'] = [ '#type' => 'url', - '#title' => t('Hostname'), - '#description' => t('The hostname you want to switch to.'), + '#title' => $this->t('Hostname'), + '#description' => $this->t('The hostname you want to switch to.'), '#default_value' => $environment_switcher->getUrl(), ]; $form['bg_color'] = [ '#type' => 'color', - '#title' => t('Background Color'), - '#description' => t('Background color for the indicator. Ex: #0D0D0D.'), + '#title' => $this->t('Background Color'), + '#description' => $this->t('Background color for the indicator. Ex: #0D0D0D.'), '#default_value' => $environment_switcher->getBgColor() ?: '#0D0D0D', ]; $form['fg_color'] = [ '#type' => 'color', - '#title' => t('Color'), - '#description' => t('Color for the indicator. Ex: #D0D0D0.'), + '#title' => $this->t('Color'), + '#description' => $this->t('Color for the indicator. Ex: #D0D0D0.'), '#default_value' => $environment_switcher->getFgColor() ?: '#D0D0D0', ]; @@ -60,7 +60,7 @@ class EnvironmentIndicatorForm extends EntityForm { public function save(array $form, FormStateInterface $form_state) { $environment = $this->getEntity(); $environment->save(); - drupal_set_message(t('Saved the %label environment.', [ + drupal_set_message($this->t('Saved the %label environment.', [ '%label' => $environment->label(), ]));