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

change footer_block to footer_text

parent a2308896
No related merge requests found
......@@ -72,12 +72,12 @@ class ModuleConfigurationForm extends ConfigFormBase {
'#default_value' => $config->get('admin_link'),
);
$form['basic']['footer_block'] = array(
$form['basic']['footer_text'] = array(
'#type' => 'text_format',
'#title' => $this->t('Footer Block'),
'#title' => $this->t('Footer Text'),
'#description' => $this->t('This content will be displayed in the footer below the contact info. It can contain links or other pertinent information. This is a good place for your ADA statement.'),
'#format' => 'basic_html',
'#default_value' => $config->get('footer_block.value'),
'#default_value' => $config->get('footer_text.value'),
);
// Contact Information tab
......@@ -223,7 +223,7 @@ class ModuleConfigurationForm extends ConfigFormBase {
$this->config('wcm8_siteinfo.settings')
->set('prefix', $values['prefix'])
->set('admin_link', $values['admin_link'])
->set('footer_block', $values['footer_block'])
->set('footer_text', $values['footer_text'])
->set('address_1', $values['address_1'])
->set('address_2', $values['address_2'])
->set('city', $values['city'])
......
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