You are here

function less_hook_info in Less CSS Preprocessor 7.2

Same name and namespace in other branches
  1. 8 less.module \less_hook_info()
  2. 7.4 less.module \less_hook_info()

Implements hook_hook_info().

File

./less.module, line 16
Handles compiling of .less files.

Code

function less_hook_info() {
  $hooks = array();
  $hooks['form_system_theme_settings_alter'] = array(
    'group' => 'theme',
  );
  $hooks['wysiwyg_editor_settings_alter'] = array(
    'group' => 'wysiwyg',
  );
  $hooks['form_wysiwyg_profile_form_alter'] = array(
    'group' => 'wysiwyg',
  );
  return $hooks;
}