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 branches found
No related tags found
No related merge requests found
......@@ -117,21 +117,21 @@ class ModuleConfigurationForm extends ConfigFormBase {
$form['contact']['zip'] = array(
'#type' => 'textfield',
'#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'),
);
$form['contact']['phone'] = array(
'#type' => 'tel',
'#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'),
);
$form['contact']['fax'] = array(
'#type' => 'tel',
'#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'),
);
......
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