You are here

function hook_gallery_assist_ct_settings_alter in Gallery Assist 7

Alter or increase the GA settings variable.

Parameters

$settings: The array contains the GA settings.

1 invocation of hook_gallery_assist_ct_settings_alter()
gallery_assist_ct_settings in ./gallery_assist.module
Get content types gallery settings and allow other modules to change or increase them.

File

./gallery_assist.api.inc, line 20
Hooks provided by the Gallery Assist module.

Code

function hook_gallery_assist_ct_settings_alter(&$settings) {
  $settings['new_param'] = 'new Value';
}