You are here

function hfs_body_settings_form in Header and Footer Scripts 7

Administrative settings.

Return value

Add styles and scripts at the start of the body tag.

1 string reference to 'hfs_body_settings_form'
hfs_menu in ./hfs.module
Implements hook_menu().

File

./hfs.admin.inc, line 62
Administrative page code for the Header Footer Script module.

Code

function hfs_body_settings_form($form, &$form_state) {
  $body_section = variable_get('hfs_body_scripts');
  $form['hfs_body'] = array(
    '#type' => 'fieldset',
    '#title' => t('Add Scripts and Styles in body'),
    '#description' => t('All the defined scripts and styles in this section would be added next to <strong>body</strong> tag.'),
  );
  $form['hfs_body']['styles'] = array(
    '#type' => 'textarea',
    '#title' => t('Body Styles'),
    '#default_value' => isset($body_section['styles']) ? $body_section['styles'] : '',
    '#description' => t('<p>You can add multiple <strong>stylesheets</strong> here with multiple ways, For example: </p><p>1. &lt;link type="text/css" rel="stylesheet" href="http://www.example.com/style.css" media="all" /&gt;</p><p> 2. &lt;link type="text/css" rel="stylesheet" href="/style.css" media="all" /&gt;</p><p> 3. &lt;style&gt;#header { color: grey; }&lt;/style&gt;</p>'),
    '#rows' => 10,
  );
  $form['hfs_body']['scripts'] = array(
    '#type' => 'textarea',
    '#title' => t('Body Scripts'),
    '#default_value' => isset($body_section['scripts']) ? $body_section['scripts'] : '',
    '#description' => t('<p>On mostly sites, this section is used to add the <strong>Google Tag Manager</strong>. <strong>Like:</strong></p><p>1. &lt;!-- Google Tag Manager --&gt;&lt;noscript&gt;<strong>Write Your code here</strong>&lt;/script&gt;&lt;!-- End Google Tag Manager --&gt;</p><p>You can also add multiple <strong>scripts</strong> here with multiple ways, For example: </p><p>1. &lt;script type="text/javascript" src="http://www.example.com/script.js"&gt;&lt;/script&gt;</p><p> 2. &lt;script type="text/javascript" src="/script.js"&gt;&lt;/script&gt;</p><p> 3. &lt;script type="text/javascript"&gt;&lt;!--//--&gt;&lt;![CDATA[//&gt;&lt;!--// close script tag //--&gt;&lt;!]]&gt;&lt;/script&gt;</p>'),
    '#rows' => 10,
  );
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => 'Save Body Settings',
  );
  return $form;
}