You are here

fusion_apply.fusion.inc in Fusion Accelerator 7

Same filename and directory in other branches
  1. 7.2 fusion_apply/fusion_apply.fusion.inc

Implements skin definition hooks.

File

fusion_apply/fusion_apply.fusion.inc
View source
<?php

/**
 * @file
 * Implements skin definition hooks.
 */

/**
 * Implements hook_fusion_apply_group_info().
 */
function fusion_apply_fusion_apply_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;
}