You are here

colorbox.api.php in Colorbox 6

Same filename and directory in other branches
  1. 8 colorbox.api.php
  2. 7.2 colorbox.api.php
  3. 7 colorbox.api.php

API documentation for the colorbox module.

File

colorbox.api.php
View source
<?php

/**
 * @file
 * API documentation for the colorbox module.
 */

/**
 * Allows to override Colorbox settings and style.
 *
 * Implementation of hook_colorbox_settings_alter().
 *
 * @param $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 $style
 *   The name of the active style plugin.
 */
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';
  }
}

/**
 * Allow other modules to control access to forms opening in Colorbox.
 *
 * Implementation of hook_colorbox_form_access().
 *
 * @param $form_id
 *   The unique string identifying the current form.
 */
function hook_colorbox_form_access($form_id) {
  $access = FALSE;
  if ($form_id == 'forward_form') {
    return user_access('access forward');
  }
  return $access;
}

Functions

Namesort descending Description
hook_colorbox_form_access Allow other modules to control access to forms opening in Colorbox.
hook_colorbox_settings_alter Allows to override Colorbox settings and style.