You are here

function skinr_skinr_group_info in Skinr 7.2

Implements hook_skinr_group_info().

File

./skinr.skinr.inc, line 17
Implements page and region level rules, and adds default groups.

Code

function skinr_skinr_group_info() {
  $groups['general'] = array(
    'title' => t('General'),
    'description' => t('Styles for content such as lists, buttons, margins, padding, etc.'),
    'weight' => -10,
  );
  $groups['box'] = array(
    'title' => t('Box styles'),
    'description' => t('Presentational styles for the container.'),
  );
  $groups['typography'] = array(
    'title' => t('Typography'),
    'description' => t('Fonts, styles, sizes and other typography related skins.'),
  );
  $groups['layout'] = array(
    'title' => t('Layout'),
    'description' => t('Grid, layout and other structural related skins.'),
  );
  return $groups;
}