public function BodyForm::buildForm in Header and Footer Scripts 8
Same name and namespace in other branches
- 8.2 src/Form/BodyForm.php \Drupal\header_and_footer_scripts\Form\BodyForm::buildForm()
Implements FormBuilder::buildForm.
Overrides ConfigFormBase::buildForm
File
- src/
Form/ BodyForm.php, line 31
Class
- BodyForm
- Provide settings page for adding CSS/JS after the start of body tag.
Namespace
Drupal\header_and_footer_scripts\FormCode
public function buildForm(array $form, FormStateInterface $form_state, Request $request = NULL) {
$body_section = $this
->config('header_and_footer_scripts.body.settings')
->get();
$form['hfs_body'] = [
'#type' => 'fieldset',
'#title' => $this
->t('Add Scripts and Styles in body'),
'#description' => $this
->t('All the defined scripts and styles in this section would be added next to <strong>body</strong> tag.'),
];
$form['hfs_body']['styles'] = [
'#type' => 'textarea',
'#title' => $this
->t('Body Styles'),
'#default_value' => isset($body_section['styles']) ? $body_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_body']['scripts'] = [
'#type' => 'textarea',
'#title' => $this
->t('Body Scripts'),
'#default_value' => isset($body_section['scripts']) ? $body_section['scripts'] : '',
'#description' => $this
->t('<p>On mostly sites, this section is used to add the <strong>Google Tag Manager</strong>. <strong>Like:</strong></p><p>1. <!-- Google Tag Manager --><noscript><strong>Write Your code here</strong></script><!-- End Google Tag Manager --></p><p>You can also 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 Body");</script></p>'),
'#rows' => 10,
];
return parent::buildForm($form, $form_state);
}