-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcolorbox.api.php
43 lines (40 loc) · 1.19 KB
/
colorbox.api.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/**
* @file
* API documentation for the colorbox module.
*/
/**
* Allows to override Colorbox settings and style.
*
* Implements hook_colorbox_settings_alter().
*
* @param array $settings
* An associative array of Colorbox settings. See the
* @link http://colorpowered.com/colorbox/ Colorbox documentation @endlink
* for the full list of supported parameters.
* @param string $style
* The name of the active style plugin. If $style is 'none', no Colorbox
* theme will be loaded.
*/
function hook_colorbox_settings_alter(&$settings, &$style) {
// Disable automatic downscaling of images to maxWidth/maxHeight size.
$settings['scalePhotos'] = FALSE;
// Use custom style plugin specifically for node/123.
if ($_GET['q'] == 'node/123') {
$style = 'mystyle';
}
}
/**
* Allows to override activation of Colorbox for the current URL.
*
* @param $active
* A boolean indicating whether colorbox should be active for the current
* URL or not.
*/
function hook_colorbox_active_alter(&$active) {
$path = backdrop_get_path_alias($_GET['q']);
if (backdrop_match_path($path, 'admin/config/colorbox_test')) {
// Enable colorbox for this URL.
$active = TRUE;
}
}