Skip to content
Snippets Groups Projects
Commit 0901dc27 authored by Melissa Miller's avatar Melissa Miller
Browse files

update some field descriptions

parent 021e5af7
No related merge requests found
...@@ -117,21 +117,21 @@ class ModuleConfigurationForm extends ConfigFormBase { ...@@ -117,21 +117,21 @@ class ModuleConfigurationForm extends ConfigFormBase {
$form['contact']['zip'] = array( $form['contact']['zip'] = array(
'#type' => 'textfield', '#type' => 'textfield',
'#title' => $this->t('Zip Code'), '#title' => $this->t('Zip Code'),
'#description' => $this->t('Zip Code – formatted as 43210 or 43210-1234'), '#description' => $this->t('Formatted: 43210 or 43210-1234'),
'#default_value' => $config->get('zip'), '#default_value' => $config->get('zip'),
); );
$form['contact']['phone'] = array( $form['contact']['phone'] = array(
'#type' => 'tel', '#type' => 'tel',
'#title' => $this->t('Phone'), '#title' => $this->t('Phone'),
'#description' => $this->t('Main contact phone number for your site – formatted as 614-555-5555'), '#description' => $this->t('Formatted: 614-555-5555'),
'#default_value' => $config->get('phone'), '#default_value' => $config->get('phone'),
); );
$form['contact']['fax'] = array( $form['contact']['fax'] = array(
'#type' => 'tel', '#type' => 'tel',
'#title' => $this->t('Fax'), '#title' => $this->t('Fax'),
'#description' => $this->t('Fax number, if applicable – formatted as 614-555-5555'), '#description' => $this->t('Formatted: 614-555-5555'),
'#default_value' => $config->get('fax'), '#default_value' => $config->get('fax'),
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment