Same filename and directory in other branches
  1. 7.x-1.x colorbox.admin.inc 1 comment

Administrative page callbacks for the colorbox module.

File

./colorbox.admin.inc

View source
<?php


/**
 * @file
 * Administrative page callbacks for the colorbox module.
 */

/**
 * General configuration form for controlling the colorbox behaviour.
 */
function colorbox_admin_settings() {
    global $base_url;
    $module_path = drupal_get_path('module', 'colorbox');
    $img_folder_path = $base_url . '/' . $module_path . '/images/admin';
    drupal_add_js($module_path . '/js/colorbox_admin_settings.js', array(
        'preprocess' => FALSE,
    ));
    $library_colorbox = libraries_detect('colorbox');
    $library_dompurify = libraries_detect('DOMPurify');
    if (module_exists('insert')) {
        $form['colorbox_insert_module'] = array(
            '#type' => 'fieldset',
            '#title' => t('Insert module settings'),
        );
        $image_styles = image_style_options(FALSE);
        $form['colorbox_insert_module']['colorbox_image_style'] = array(
            '#type' => 'select',
            '#title' => t('Image style'),
            '#empty_option' => t('None (original image)'),
            '#options' => $image_styles,
            '#default_value' => variable_get('colorbox_image_style', ''),
            '#description' => t('Select which image style to use for viewing images in the colorbox.'),
        );
        $form['colorbox_insert_module']['colorbox_insert_gallery'] = array(
            '#type' => 'radios',
            '#title' => t('Insert image gallery'),
            '#default_value' => variable_get('colorbox_insert_gallery', 0),
            '#options' => array(
                0 => t('Per page gallery'),
                3 => t('No gallery'),
            ),
            '#description' => t('Should the gallery be all images on the page (default) or disabled.'),
        );
    }
    $form['colorbox_extra_features'] = array(
        '#type' => 'fieldset',
        '#title' => t('Extra features'),
    );
    $form['colorbox_extra_features']['colorbox_load'] = array(
        '#type' => 'checkbox',
        '#title' => t('Enable Colorbox load'),
        '#default_value' => variable_get('colorbox_load', 0),
        '#description' => t('This enables custom links that can open forms and paths in a Colorbox. Add the class "colorbox-load" to the link and build the url like this for paths "[path]?width=500&height=500&iframe=true" or "[path]?width=500&height=500" if you don\'t want an iframe. Other modules may activate this for easy Colorbox integration.'),
    );
    $form['colorbox_extra_features']['colorbox_inline'] = array(
        '#type' => 'checkbox',
        '#title' => t('Enable Colorbox inline'),
        '#default_value' => variable_get('colorbox_inline', 0),
        '#description' => t('<a href="https://www.drupal.org/files/druplicon-small.png" class="colorbox">This</a> enables custom links that can open inline content in a Colorbox. Add the class "colorbox-inline" to the link and build the url like this "?width=500&height=500&inline=true#id-of-content". Other modules may activate this for easy Colorbox integration.'),
    );
    $form['colorbox_dompurify'] = array(
        '#type' => 'fieldset',
        '#title' => t('DOMPurify Library'),
    );
    $dompurify_message = t('The DOMPurify library is installed. ' . 'This library will sanitize HTML in Colorbox captions.');
    if (empty($library_dompurify['installed'])) {
        $dompurify_message = t('The <a href="!dompurify_link">DOMPurify</a> ' . 'library is not installed. ' . 'This library is necessary if you want to use HTML in Colorbox captions. ' . 'Without it, all captions will be treated as plain text.', array(
            '!dompurify_link' => 'https://github.com/cure53/DOMPurify',
        ));
    }
    elseif (version_compare($library_dompurify['version'], COLORBOX_DOMPURIFY_MIN_PLUGIN_VERSION, '<')) {
        $dompurify_message = t('The installed version of the <a href="!dompurify_link">DOMPurify</a> ' . 'library is below the minimum version of ' . COLORBOX_DOMPURIFY_MIN_PLUGIN_VERSION . '. ' . 'Please upgrade this library if you want to use HTML in Colorbox captions. ' . 'Without it, all captions will be treated as plain text.', array(
            '!dompurify_link' => 'https://github.com/cure53/DOMPurify',
        ));
    }
    $form['colorbox_dompurify']['dompurify_message'] = array(
        '#type' => 'markup',
        '#prefix' => '<p>',
        '#suffix' => '</p>',
        '#markup' => $dompurify_message,
    );
    if (empty($library_dompurify['installed'])) {
        $form['colorbox_dompurify']['colorbox_dompurify_hide_warning'] = array(
            '#type' => 'checkbox',
            '#title' => t('Don\'t show warning on status report'),
            '#default_value' => variable_get('colorbox_dompurify_hide_warning', 0),
            '#description' => t('By default, a warning appears on Drupal\'s ' . 'status report if this library is missing. Check this box to ' . 'suppress the warning.'),
        );
    }
    $form['colorbox_custom_settings'] = array(
        '#type' => 'fieldset',
        '#title' => t('Styles and options'),
    );
    $colorbox_styles = array(
        'default' => t('Default'),
        'plain' => t('Plain (mainly for images)'),
        'stockholmsyndrome' => t('Stockholm Syndrome'),
        $library_colorbox['library path'] . '/example1' => t('Example 1'),
        $library_colorbox['library path'] . '/example2' => t('Example 2'),
        $library_colorbox['library path'] . '/example3' => t('Example 3'),
        $library_colorbox['library path'] . '/example4' => t('Example 4'),
        $library_colorbox['library path'] . '/example5' => t('Example 5'),
        'none' => t('None'),
    );
    $form['colorbox_custom_settings']['colorbox_style'] = array(
        '#type' => 'select',
        '#title' => t('Style'),
        '#options' => $colorbox_styles,
        '#default_value' => variable_get('colorbox_style', 'default'),
        '#description' => t('Select the style to use for the Colorbox. The example styles are the ones that come with the Colorbox plugin. Select "None" if you have added Colorbox styles to your theme. <br> <strong>Examples</strong>: <ul><li><a href="@img_folder_path/example_default.png" target="blank">Default</a></li><li><a href="@img_folder_path/example_plain.png" target="blank">Plain</a></li><li><a href="@img_folder_path/example_stockholm_syndrome.png" target="blank">Stockholm Syndrome</a></li><li><a href="@img_folder_path/colorbox_example_1.png" target="blank">Example 1</a></li><li><a href="@img_folder_path/colorbox_example_2.png" target="blank">Example 2</a></li><li><a href="@img_folder_path/colorbox_example_3.png" target="blank">Example 3</a></li><li><a href="@img_folder_path/colorbox_example_4.png" target="blank">Example 4</a></li><li><a href="@img_folder_path/colorbox_example_5.png" target="blank">Example 5</a></li><li><a href="@img_folder_path/example_none.png" target="blank">None</a></li></ul>', array(
            '@img_folder_path' => $img_folder_path,
        )),
    );
    $form['colorbox_custom_settings']['colorbox_custom_settings_activate'] = array(
        '#type' => 'radios',
        '#title' => t('Options'),
        '#options' => array(
            0 => t('Default'),
            1 => t('Custom'),
        ),
        '#default_value' => variable_get('colorbox_custom_settings_activate', 0),
        '#description' => t('Use the default or custom options for Colorbox.'),
        '#prefix' => '<div class="colorbox-custom-settings-activate">',
        '#suffix' => '</div>',
    );
    $js_hide = variable_get('colorbox_custom_settings_activate', 0) ? '' : ' js-hide';
    $form['colorbox_custom_settings']['wrapper_start'] = array(
        '#markup' => '<div class="colorbox-custom-settings' . $js_hide . '">',
    );
    $form['colorbox_custom_settings']['colorbox_transition_type'] = array(
        '#type' => 'radios',
        '#title' => t('Transition type'),
        '#options' => array(
            'elastic' => t('Elastic'),
            'fade' => t('Fade'),
            'none' => t('None'),
        ),
        '#default_value' => variable_get('colorbox_transition_type', 'elastic'),
        '#description' => t('The transition type.'),
    );
    $form['colorbox_custom_settings']['colorbox_transition_speed'] = array(
        '#type' => 'select',
        '#title' => t('Transition speed'),
        '#options' => drupal_map_assoc(array(
            100,
            150,
            200,
            250,
            300,
            350,
            400,
            450,
            500,
            550,
            600,
        )),
        '#default_value' => variable_get('colorbox_transition_speed', 350),
        '#description' => t('Sets the speed of the fade and elastic transitions, in milliseconds.'),
    );
    $form['colorbox_custom_settings']['colorbox_opacity'] = array(
        '#type' => 'select',
        '#title' => t('Opacity'),
        '#options' => drupal_map_assoc(array(
            '0',
            '0.10',
            '0.15',
            '0.20',
            '0.25',
            '0.30',
            '0.35',
            '0.40',
            '0.45',
            '0.50',
            '0.55',
            '0.60',
            '0.65',
            '0.70',
            '0.75',
            '0.80',
            '0.85',
            '0.90',
            '0.95',
            '1',
        )),
        '#default_value' => variable_get('colorbox_opacity', '0.85'),
        '#description' => t('The overlay opacity level. Range: 0 to 1.'),
    );
    $form['colorbox_custom_settings']['colorbox_text_current'] = array(
        '#type' => 'textfield',
        '#title' => t('Current'),
        '#default_value' => variable_get('colorbox_text_current', '{current} of {total}'),
        '#size' => 30,
        '#description' => t('Text format for the content group / gallery count. {current} and {total} are detected and replaced with actual numbers while Colorbox runs.'),
    );
    $form['colorbox_custom_settings']['colorbox_text_previous'] = array(
        '#type' => 'textfield',
        '#title' => t('Previous'),
        '#default_value' => variable_get('colorbox_text_previous', '« Prev'),
        '#size' => 30,
        '#description' => t('Text for the previous button in a shared relation group.'),
    );
    $form['colorbox_custom_settings']['colorbox_text_next'] = array(
        '#type' => 'textfield',
        '#title' => t('Next'),
        '#default_value' => variable_get('colorbox_text_next', 'Next »'),
        '#size' => 30,
        '#description' => t('Text for the next button in a shared relation group.'),
    );
    $form['colorbox_custom_settings']['colorbox_text_close'] = array(
        '#type' => 'textfield',
        '#title' => t('Close'),
        '#default_value' => variable_get('colorbox_text_close', 'Close'),
        '#size' => 30,
        '#description' => t('Text for the close button. The "Esc" key will also close Colorbox.'),
    );
    $form['colorbox_custom_settings']['colorbox_overlayclose'] = array(
        '#type' => 'checkbox',
        '#title' => t('Overlay close'),
        '#default_value' => variable_get('colorbox_overlayclose', 1),
        '#description' => t('Enable closing Colorbox by clicking on the background overlay.'),
    );
    $form['colorbox_custom_settings']['colorbox_returnfocus'] = array(
        '#type' => 'checkbox',
        '#title' => t('Return focus'),
        '#default_value' => variable_get('colorbox_returnfocus', 1),
        '#description' => t('Return focus when Colorbox exits to the element it was launched from.'),
    );
    $form['colorbox_custom_settings']['colorbox_maxwidth'] = array(
        '#type' => 'textfield',
        '#title' => t('Max width'),
        '#default_value' => variable_get('colorbox_maxwidth', '98%'),
        '#size' => 30,
        '#description' => t('Set a maximum width for loaded content. Example: "100%", 500, "500px".'),
    );
    $form['colorbox_custom_settings']['colorbox_maxheight'] = array(
        '#type' => 'textfield',
        '#title' => t('Max height'),
        '#default_value' => variable_get('colorbox_maxheight', '98%'),
        '#size' => 30,
        '#description' => t('Set a maximum height for loaded content. Example: "100%", 500, "500px".'),
    );
    $form['colorbox_custom_settings']['colorbox_initialwidth'] = array(
        '#type' => 'textfield',
        '#title' => t('Initial width'),
        '#default_value' => variable_get('colorbox_initialwidth', '300'),
        '#size' => 30,
        '#description' => t('Set the initial width, prior to any content being loaded. Example: "100%", 500, "500px".'),
    );
    $form['colorbox_custom_settings']['colorbox_initialheight'] = array(
        '#type' => 'textfield',
        '#title' => t('Initial height'),
        '#default_value' => variable_get('colorbox_initialheight', '250'),
        '#size' => 30,
        '#description' => t('Set the initial height, prior to any content being loaded. Example: "100%", 500, "500px".'),
    );
    $form['colorbox_custom_settings']['colorbox_fixed'] = array(
        '#type' => 'checkbox',
        '#title' => t('Fixed'),
        '#default_value' => variable_get('colorbox_fixed', 1),
        '#description' => t("If the Colorbox should be displayed in a fixed position within the visitor's viewport or relative to the document."),
    );
    $form['colorbox_custom_settings']['colorbox_slideshow_settings'] = array(
        '#type' => 'fieldset',
        '#title' => t('Slideshow settings'),
        '#collapsible' => TRUE,
        '#collapsed' => TRUE,
    );
    $form['colorbox_custom_settings']['colorbox_slideshow_settings']['colorbox_slideshow'] = array(
        '#type' => 'radios',
        '#title' => t('Slideshow'),
        '#options' => array(
            0 => t('Off'),
            1 => t('On'),
        ),
        '#default_value' => variable_get('colorbox_slideshow', 0),
        '#description' => t('An automatic slideshow to a content group / gallery.'),
        '#prefix' => '<div class="colorbox-slideshow-settings-activate">',
        '#suffix' => '</div>',
    );
    $form['colorbox_custom_settings']['colorbox_scrolling'] = array(
        '#type' => 'radios',
        '#title' => t('Scrollbars'),
        '#options' => array(
            1 => t('On'),
            0 => t('Off'),
        ),
        '#default_value' => variable_get('colorbox_scrolling', 1),
        '#description' => t('If false, Colorbox will hide scrollbars for overflowing content. This could be used on conjunction with the resize method for a smoother transition if you are appending content to an already open instance of Colorbox.'),
    );
    $js_hide = variable_get('colorbox_slideshow', 0) ? '' : ' js-hide';
    $form['colorbox_custom_settings']['colorbox_slideshow_settings']['wrapper_start'] = array(
        '#markup' => '<div class="colorbox-slideshow-settings' . $js_hide . '">',
    );
    $form['colorbox_custom_settings']['colorbox_slideshow_settings']['colorbox_slideshowauto'] = array(
        '#type' => 'checkbox',
        '#title' => t('Slideshow autostart'),
        '#default_value' => variable_get('colorbox_slideshowauto', 1),
        '#description' => t('If the slideshow should automatically start to play.'),
    );
    $form['colorbox_custom_settings']['colorbox_slideshow_settings']['colorbox_slideshowspeed'] = array(
        '#type' => 'select',
        '#title' => t('Slideshow speed'),
        '#options' => drupal_map_assoc(array(
            1000,
            1500,
            2000,
            2500,
            3000,
            3500,
            4000,
            4500,
            5000,
            5500,
            6000,
        )),
        '#default_value' => variable_get('colorbox_slideshowspeed', 2500),
        '#description' => t('Sets the speed of the slideshow, in milliseconds.'),
    );
    $form['colorbox_custom_settings']['colorbox_slideshow_settings']['colorbox_text_start'] = array(
        '#type' => 'textfield',
        '#title' => t('Start slideshow'),
        '#default_value' => variable_get('colorbox_text_start', 'start slideshow'),
        '#size' => 30,
        '#description' => t('Text for the slideshow start button.'),
    );
    $form['colorbox_custom_settings']['colorbox_slideshow_settings']['colorbox_text_stop'] = array(
        '#type' => 'textfield',
        '#title' => t('Stop slideshow'),
        '#default_value' => variable_get('colorbox_text_stop', 'stop slideshow'),
        '#size' => 30,
        '#description' => t('Text for the slideshow stop button.'),
    );
    $form['colorbox_custom_settings']['colorbox_slideshow_settings']['wrapper_stop'] = array(
        '#markup' => '</div>',
    );
    $form['colorbox_custom_settings']['wrapper_stop'] = array(
        '#markup' => '</div>',
    );
    $form['colorbox_advanced_settings'] = array(
        '#type' => 'fieldset',
        '#title' => t('Advanced settings'),
        '#collapsible' => TRUE,
        '#collapsed' => TRUE,
    );
    $form['colorbox_advanced_settings']['colorbox_unique_token'] = array(
        '#type' => 'radios',
        '#title' => t('Unique per-request gallery token'),
        '#options' => array(
            1 => t('On'),
            0 => t('Off'),
        ),
        '#default_value' => variable_get('colorbox_unique_token', 1),
        '#description' => t('If On (default), Colorbox will add a unique per-request token to the gallery id to avoid images being added manually to galleries. The token was added as a security fix but some see the old behavoiur as an feature and this settings makes it possible to remove the token.'),
    );
    $form['colorbox_advanced_settings']['colorbox_mobile_detect'] = array(
        '#type' => 'radios',
        '#title' => t('Mobile detection'),
        '#options' => array(
            1 => t('On'),
            0 => t('Off'),
        ),
        '#default_value' => variable_get('colorbox_mobile_detect', 1),
        '#description' => t('If On (default), Colorbox will not be active for devices with the max width set below.'),
    );
    $form['colorbox_advanced_settings']['colorbox_mobile_device_width'] = array(
        '#type' => 'textfield',
        '#title' => t('Device width'),
        '#default_value' => variable_get('colorbox_mobile_device_width', '480px'),
        '#size' => 30,
        '#description' => t('Set the mobile device max width. Default: 480px.'),
        '#states' => array(
            'visible' => array(
                ':input[name="colorbox_mobile_detect"]' => array(
                    'value' => '1',
                ),
            ),
        ),
    );
    $form['colorbox_advanced_settings']['colorbox_caption_trim'] = array(
        '#type' => 'radios',
        '#title' => t('Caption shortening'),
        '#options' => array(
            0 => t('Default'),
            1 => t('Yes'),
        ),
        '#default_value' => variable_get('colorbox_caption_trim', 0),
        '#description' => t('If the caption should be made shorter in the Colorbox to avoid layout problems. The default is to shorten for the example styles, they need it, but not for other styles.'),
    );
    $form['colorbox_advanced_settings']['colorbox_caption_trim_length'] = array(
        '#type' => 'select',
        '#title' => t('Caption max length'),
        '#options' => drupal_map_assoc(array(
            40,
            45,
            50,
            55,
            60,
            70,
            75,
            80,
            85,
            90,
            95,
            100,
            105,
            110,
            115,
            120,
        )),
        '#default_value' => variable_get('colorbox_caption_trim_length', 75),
        '#states' => array(
            'visible' => array(
                ':input[name="colorbox_caption_trim"]' => array(
                    'value' => '1',
                ),
            ),
        ),
    );
    $form['colorbox_advanced_settings']['colorbox_visibility'] = array(
        '#type' => 'radios',
        '#title' => t('Show Colorbox on specific pages'),
        '#options' => array(
            0 => t('All pages except those listed'),
            1 => t('Only the listed pages'),
        ),
        '#default_value' => variable_get('colorbox_visibility', 0),
    );
    $form['colorbox_advanced_settings']['colorbox_pages'] = array(
        '#type' => 'textarea',
        '#title' => '<span class="element-invisible">' . t('Pages') . '</span>',
        '#default_value' => variable_get('colorbox_pages', "admin*\nimagebrowser*\nimg_assist*\nimce*\nnode/add/*\nnode/*/edit\nprint/*\nprintpdf/*\nsystem/ajax\nsystem/ajax/*"),
        '#description' => t("Specify pages by using their paths. Enter one path per line. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page. <p><a href=\"#\" class=\"colorbox-reset-specific-pages-default\">Reset to default</a></p>", array(
            '%blog' => 'blog',
            '%blog-wildcard' => 'blog/*',
            '%front' => '<front>',
        )),
    );
    $form['colorbox_advanced_settings']['colorbox_compression_type'] = array(
        '#type' => 'radios',
        '#title' => t('Choose Colorbox compression level'),
        '#options' => array(
            'minified' => t('Production (Minified)'),
            'source' => t('Development (Uncompressed Code)'),
        ),
        '#default_value' => variable_get('colorbox_compression_type', 'minified'),
    );
    return system_settings_form($form);
}

Functions

Title Deprecated Summary
colorbox_admin_settings General configuration form for controlling the colorbox behaviour.