You are here

function lightbox2_settings_page in Lightbox2 5.2

Same name and namespace in other branches
  1. 8 lightbox2.admin.inc \lightbox2_settings_page()
  2. 6 lightbox2.admin.inc \lightbox2_settings_page()
  3. 7.2 lightbox2.admin.inc \lightbox2_settings_page()
  4. 7 lightbox2.admin.inc \lightbox2_settings_page()

The default lightbox2 settings page.

1 string reference to 'lightbox2_settings_page'
lightbox2_menu in ./lightbox2.module
Implementation of hook_menu().

File

./lightbox2.module, line 317
Enables the use of lightbox2 which places images above your current page, not within. This frees you from the constraints of the layout, particularly column widths.

Code

function lightbox2_settings_page($op = NULL) {
  $output .= drupal_get_form('lightbox2_general_settings_form');
  return $output;
}