You are here

function _colorbox_admin_settings_login_links_load in Colorbox 7

Same name and namespace in other branches
  1. 6 colorbox.admin.inc \_colorbox_admin_settings_login_links_load()

Enable the Colorbox load feature of the login links are set to open in a Colorbox.

1 string reference to '_colorbox_admin_settings_login_links_load'
colorbox_admin_settings in ./colorbox.admin.inc
General configuration form for controlling the colorbox behaviour.

File

./colorbox.admin.inc, line 353
Administrative page callbacks for the colorbox module.

Code

function _colorbox_admin_settings_login_links_load($form_element) {
  $login_links = $form_element['#value'];
  if ($login_links == 2) {
    variable_set('colorbox_load', 1);
  }
  return $form_element;
}