public function FooterForm::buildForm in Header and Footer Scripts 8
Same name and namespace in other branches
- 8.2 src/Form/FooterForm.php \Drupal\header_and_footer_scripts\Form\FooterForm::buildForm()
Implements FormBuilder::buildForm.
Overrides ConfigFormBase::buildForm
File
- src/
Form/ FooterForm.php, line 31
Class
- FooterForm
- Provide settings page for adding CSS/JS before the end of body tag.
Namespace
Drupal\header_and_footer_scripts\FormCode
public function buildForm(array $form, FormStateInterface $form_state, Request $request = NULL) {
$footer_section = $this
->config('header_and_footer_scripts.footer.settings')
->get();
$form['hfs_footer'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Add Scripts and Styles in Footer'),
'#description' => $this
->t('All the defined scripts and styles in this section would be added just before closing the <strong>body</strong> tag.'),
];
$form['hfs_footer']['styles'] = [
'#type' => 'textarea',
'#title' => $this
->t('Footer Styles'),
'#default_value' => isset($footer_section['styles']) ? $footer_section['styles'] : '',
'#description' => $this
->t('<p>You can add multiple <strong>stylesheets</strong> here with multiple ways, For example: </p><p>1. <link type="text/css" rel="stylesheet" href="http://www.example.com/style.css" media="all" /></p><p> 2. <link type="text/css" rel="stylesheet" href="/style.css" media="all" /></p><p> 3. <style>#header { color: grey; }</style></p>'),
'#rows' => 10,
];
$form['hfs_footer']['scripts'] = [
'#type' => 'textarea',
'#title' => $this
->t('Footer Scripts'),
'#default_value' => isset($footer_section['scripts']) ? $footer_section['scripts'] : '',
'#description' => $this
->t('<p>You can add multiple <strong>scripts</strong> here with multiple ways, For example: </p><p>1. <script type="text/javascript" src="http://www.example.com/script.js"></script></p><p> 2. <script type="text/javascript" src="/script.js"></script></p><p> 3. <script type="text/javascript">console.log("HFS Footer");</script></p>'),
'#rows' => 10,
];
return parent::buildForm($form, $form_state);
}