You are here

function lightbox2_image_styles in Lightbox2 8

Same name and namespace in other branches
  1. 7.2 lightbox2.module \lightbox2_image_styles()
  2. 7 lightbox2.module \lightbox2_image_styles()

Helper function for image styles.

2 calls to lightbox2_image_styles()
lightbox2_field_formatter_settings_form in ./lightbox2.module
Implements hook_field_formatter_settings_form().
lightbox2_field_formatter_settings_summary in ./lightbox2.module
Implements hook_field_formatter_settings_summary().

File

./lightbox2.module, line 880
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_image_styles() {
  $image_styles = array(
    '0' => 'original',
  );
  $tmp = image_styles();
  foreach ($tmp as $style) {
    $image_styles[$style['name']] = $style['name'];
  }
  return $image_styles;
}