You are here

gallery_assist.api.inc in Gallery Assist 7

Hooks provided by the Gallery Assist module.

File

gallery_assist.api.inc
View source
<?php

/**
 * @file
 * Hooks provided by the Gallery Assist module.
 */

/**
 * @addtogroup hooks
 * @{
 */

/**
 * Alter or increase the GA settings variable.
 *
 * @param $settings
 *   The array contains the GA settings.
 *
 * @ingroup hooks
 */
function hook_gallery_assist_ct_settings_alter(&$settings) {
  $settings['new_param'] = 'new Value';
}
function hook_gallery_assist_item_alter(&$elements) {
  dsm($elements);
}

/**
 * @} End of "addtogroup hooks".
 */

Functions

Namesort descending Description
hook_gallery_assist_ct_settings_alter Alter or increase the GA settings variable.
hook_gallery_assist_item_alter