You are here

function hook_skinr_group_info_alter in Skinr 8.2

Same name and namespace in other branches
  1. 7.2 skinr.api.php \hook_skinr_group_info_alter()

Perform alterations on Skinr groups.

Parameters

$groups: An array of group information exposed by hook_skinr_group_info() implementations.

Related topics

1 invocation of hook_skinr_group_info_alter()
skinr_get_group_info in ./skinr.module
Retrieves all skin groups registered by modules and themes.

File

./skinr.api.php, line 438
This file contains no working PHP code; it exists to provide additional documentation for doxygen as well as to document hooks in the standard Drupal manner.

Code

function hook_skinr_group_info_alter(&$groups) {

  // Show this tab group at the top of the Skinr settings form.
  $groups['skinr_menus']['weight'] = -1;
}