Skip to content

Instantly share code, notes, and snippets.

@alatzl
Created June 20, 2013 21:00
Show Gist options
  • Save alatzl/5826602 to your computer and use it in GitHub Desktop.
Save alatzl/5826602 to your computer and use it in GitHub Desktop.
Adds theme setting for enabling livereload.
/**
* Implements hook_form_system_theme_settings_alter()
*/
function drupal_theme_template_form_system_theme_settings_alter(&$form, $form_state) {
$form['dtt_enable_livereload'] = array(
'#type' => 'checkbox',
'#title' => t('Enable livereload'),
'#default_value' => theme_get_setting('dtt_enable_livereload'),
'#description' => t("For development use only."),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment