function lightbox2_update_3 in Lightbox2 6
Same name and namespace in other branches
- 8 lightbox2.install \lightbox2_update_3()
- 5.2 lightbox2.install \lightbox2_update_3()
- 7.2 lightbox2.install \lightbox2_update_3()
- 7 lightbox2.install \lightbox2_update_3()
'lightbox2_disable_these_urls' was renamed to 'lightbox2_page_list'. 'lightbox2_page_init_action' was also added which determines whether the lightbox functionality should be enabled or disabled for the page list. 'lightbox2_disable_zoom' has been replaced by 'lightbox2_disable_resize'. 'lightbox2_disable_zoom' still exists but has a different meaning.
Should have been created with lightbox2_update_600x() naming convention, but too late now.
File
- ./
lightbox2.install, line 160 - Installation functions for Lightbox2.
Code
function lightbox2_update_3() {
$disabled_urls = variable_get('lightbox2_disable_these_urls', '');
variable_set('lightbox2_page_init_action', 'page_disable');
variable_set('lightbox2_page_list', $disabled_urls);
variable_del('lightbox2_disable_these_urls');
$disable_zoom = variable_get('lightbox2_disable_zoom', FALSE);
variable_set('lightbox2_disable_resize', $disable_zoom);
variable_set('lightbox2_disable_zoom', FALSE);
return array();
}