113,143d112
< /**
<  * Defines group(s) that will contain skins. Groups are form element
<  * containers used to organize skins categorically using vertical_tabs. If you
<  * don't define a group, your skins will appear in Skinr's default group, which
<  * is labeled "General."
<  *
<  * Group name(s):
<  * Each group name must be unique. It is recommended to prefix the name of each
<  * group with the name of the theme or module name implementing it, followed by
<  * the name of the group. Note that you cannot define 2 groups with the same
<  * name, even if they are in different plugins.
<  *
<  * Group properties:
<  * - title (required): Brief title of the tab.
<  * - description (optional): Description of the group for administration page.
<  * - weight (discouraged): Weight of the tab group; NULL by default.
<  *
<  * The "hook" prefix is substituted with the name of the module or theme that
<  * implements it, followed by the plugin name, e.g.
<  * THEMENAME_PLUGINNAME_skinr_group_info(), or
<  * MODULENAME_PLUGINNAME_skinr_group_info().
<  */
< function hook_plugin_skinr_group_info() {
<   $group['skinr_menus'] = array(
<     'title' => t('Menus'),
<     'description' => t('Menu and navigation styles.'),
<   );
< 
<   return $groups;
< }
< 
146,229c115
<  * Define the skin(s) for this Skinr plugin. Each skin definition
<  * consists of properties that define its form element and settings that are
<  * needed to make it work, such as the class(es) Skinr should apply, which files
<  * it should load, whether or not it should be disabled by default and which
<  * theme hook(s) it was designed to work with.
<  *
<  * Skin name(s):
<  * Each skin name must be unique. It is recommended to prefix the name of each
<  * skin with the name of the theme or module name implementing it, followed by
<  * the name of the skin. Note that you cannot define 2 skins with the same
<  * the same name, even if they are in different plugins.
<  *
<  * Skin settings:
<  * - title (required): Title of the skin form element.
<  * - description (optional): Description of the skin form element.
<  * - group (optional): The group the skin is attached to; defaults to a Skinr
<  *   provided group labeled "General."
<  * - type (optional): The type of form element. Allowed values:
<  *   - checkboxes (default): Useful when single or multiple options can be
<  *     chosen.
<  *     Does not need to be set manually, as Skinr will apply this by default.
<  *   - select: Useful when a single option can be chosen, but many exist.
<  *   - radios: Useful when a single option can be chosen and only a few options
<  *     exist.
<  * - weight (discouraged): Sets the weight of the skin inside the group; NULL
<  *   by default. weight should not be set on each individual skin. Instead, it
<  *   should be used sparingly where positioning a skin at the very top or
<  *   bottom is desired.
<  * - attached (optional): A array containing information about CSS and
<  *   JavaScript files the skin requires. Each entry is an array keyed by type:
<  *   - css (optional): Maps to the functionality of drupal_add_css() with one
<  *     exception: paths are automatically assumed relative to the plugin
<  *     directory, unless external. Examples:
<  *     - Simple:
<  *       'css' => array('css/skin-name.css')
<  *     - Advanced:
<  *       'css' => array(
<  *         array('css/skin-name-ie.css', array(
<  *           'media' => 'screen',
<  *           'browsers' => array('IE' => 'lte IE 8'),
<  *         ),
<  *       )
<  *   - js (optional): Maps to the functionality of drupal_add_js() with one
<  *     exception: paths are automatically assumed as relative to the plugin
<  *     directory, unless external. Examples:
<  *     - Simple:
<  *       'js' => array('js/skin-name.js')
<  *     - Advanced:
<  *       'js' => array(
<  *         array(
<  *           'js/skin-name-advanced.js',
<  *           array(
<  *             'scope' => 'footer',
<  *             'group' => JS_THEME,
<  *         ),
<  *       )
<  * - options (required): An array containing one or more options (also arrays)
<  *   for the user to choose from when applying skins. Each option key should be
<  *   a machine name describing the option. An option should including the
<  *   following keys:
<  *   - label (required): The option label.
<  *   - class (required): An array containing one or more classes the skin
<  *     should apply. All classes should be entered as an array: For example:
<  *     'class' => array('class-b', 'class-b')
<  *   - attached (optional): Same syntax as above, but applies to a specific
<  *     option only.
<  * - theme hooks (optional): An array containing certain allowed hooks, which
<  *   allow you to limit where the skin can be used. Allowed options include:
<  *   block, block__MODULE, comment, comment__NODETYPE, comment_wrapper,
<  *   comment__wrapper_NODETYPE, node, node__NODETYPE, region,
<  *   region__REGIONNAME, panels_display, panels_region, panels_pane, views_view,
<  *   views_view__STYLENAME, views_view__DISPLAY_NAME, views_view__VIEWNAME, and
<  *   views_view__VIEWNAME_DISPLAYNAME.
<  * - default_status (optional): Skins are disabled by default to keep UI
<  *   clutter to a minimum. In some cases, like contrib themes, it makes sense to
<  *   enable skins which are required to make the theme work properly by default.
<  *   Setting this property to 1 will cause it to be enabled by default for all
<  *   installed themes.
<  *
<  * The "hook" prefix is substituted with the name of the module or theme
<  * implementing it, followed by the plugin name, e.g.
<  * THEMENAME_PLUGINNAME_skinr_skin_info(), or
<  * MODULENAME_PLUGINNAME_skinr_skin_info().
<  *
---
>  * @}
231,313d116
< function hook_plugin_skinr_skin_info() {
<   $skins['skinr_navigation'] = array(
<     'title' => t('Navigation styles'),
<     'description' => t('Select a style to use for the main navigation.'),
<     'type' => 'select',
<     'group' => 'skinr_navigation',
<     'theme hooks' => array('block__menu', 'block__menu_block'),
<     'attached' => array(
<       'css' => array('css/nav.css'),
<     ),
<     'options' => array(
<       'one_level' => array(
<         'title' => t('Standard (1 level) - No colors'),
<         'class' => array('nav'),
<       ),
<       'one_level_a' => array(
<         'title' => t('Standard (1 level) - Green'),
<         'class' => array('nav', 'nav-a'),
<         'attached' => array('css' => array('css/nav-colors.css')),
<       ),
<       'one_level_b' => array(
<         'title' => t('Standard (1 level) - Blue'),
<         'class' => array('nav', 'nav-b'),
<         'attached' => array('css' => array('css/nav-colors.css')),
<       ),
<       'dropdown' => array(
<         'title' => t('Dropdowns - No colors'),
<         'class' => array('nav', 'nav-dd'),
<         'attached' => array(
<           'css' => array('css/nav-dd.css'),
<           'js' => array('js/dropdown.js'),
<         ),
<       ),
<       'dropdown_a' => array(
<         'title' => t('Dropdowns - Green'),
<         'class' => array('nav', 'nav-dd', 'nav-a'),
<         'attached' => array(
<           'css' => array('css/nav-dd.css'),
<           'js' => array('js/dropdown.js'),
<         ),
<       ),
<       'dropdown_b' => array(
<         'title' => t('Dropdowns - Blue'),
<         'class' => array('nav', 'nav-dd', 'nav-b'),
<         'attached' => array(
<           'css' => array('css/nav-dd.css'),
<           'js' => array('js/dropdown.js'),
<         ),
<       ),
<     ),
<   );
< 
<   return $skins;
< }
< 
< /**
<  * Perform alterations on Skinr groups.
<  *
<  * @param $groups
<  *   An array of group information exposed by hook_plugin_skinr_group_info()
<  *   implementations.
<  */
< function hook_plugin_skinr_group_info_alter(&$groups) {
<   // Show this tab group at the top of the Skinr settings form.
<   $groups['skinr_menus']['weight'] = -1;
< }
< 
< /**
<  * Perform alterations on Skinr skins.
<  *
<  * @param $skins
<  *   An array of skin information exposed by hook_plugin_skinr_skin_info()
<  *   implementations.
<  */
< function hook_plugin_skinr_skin_info_alter(&$skins) {
<   // Remove restrictions on theme hooks the skin works with.
<   unset($skins['skinr_navigation']['theme hooks']);
<   
< }
< 
< /**
<   * @}
<   */
