You are here

function themekey_css_form_themekey_debug_settings_form_alter in ThemeKey 7.3

Implements hook_form_alter().

Add 'Show list of css files' option on debug settings form.

File

themekey_css/themekey_css.module, line 128

Code

function themekey_css_form_themekey_debug_settings_form_alter(array &$form, array &$form_state, $form_id) {
  $form['themekey_debug']['themekey_css_debug_css_files'] = array(
    '#type' => 'checkbox',
    '#title' => t('Show list of css files'),
    '#default_value' => variable_get('themekey_css_debug_css_files', FALSE),
    '#description' => t('Prints out detailed information about css files added on a page. Useful to debug ThemeKey Css rules.'),
  );
}