sfLightboxPlugin ================ **sfLightboxPlugin** is a symfony plugin that provides an easy to use wrapper for the [Lightbox2 javascript library](http://www.huddletogether.com/projects/lightbox2/). It adds a new helper file : `LightboxHelper` with 6 new functions: * `light_image`, to display an image (with lightbox) on an image link * `light_image_text`, to display an image with a text link * `light_slideshow`, to display a slideshow with an image set * `light_slide_image`, to display a slideshow with an image link * `light_slide_text`, to display a slideshow with a text link * `light_modallink`, to display a modal popup with any content Installation ------------ * Install the plugin (sf 1.1.x or 1.2.x) > symfony plugin:install sfLightboxPlugin (or check out from the svn repository: and publish the assets with the `symfony plugin:publish-assets` task) * Install the plugin (sf 1.0.x) > symfony plugin-install http://plugins.symfony-project.com/sfLightboxPlugin Moreover you need to upgrade the Prototype version used by symfony because Lighbox 2.04 requires at least Prototype v1.6.0.2 and symfony 1.0.x is bundled with prototype v1.5.0.0. * If you are using symfony 1.2.x, the **sfProtoculousPlugin** muts be activated (it is activated by default) and you must publish its assets. (be sure that you have a `/sfProtoculousPlugin` directory or this alias in your `/web` folder. If you don't want to use the prococulous plugin you will have download and install by hand the [Prototype](http://www.prototypejs.org/download) and [Scriptaculous](http://script.aculo.us/downloads) Javascript libraries. And then update your **view.yml** file to include the required scripts: (change the paths if you installed those libraries in another directory than `/js`) # not needed if you have activated the sfProtoculousPlugin # /apps/config/apps/your-app/config/view.yml javascripts: - prototype.js - scriptaculous.js?load=effects,builder * Clear you cache > symfony cc Usage ----- ### 1 - Declare the helper [php] ### 2 - To display a lightbox link to one image Check the `_single_images.php` template inside the plugin module. [php]

Single images



  » On an image link

'Optional caption Image 1.'); // Test light_image echo light_image( 'http://www.huddletogether.com/projects/lightbox2/images/thumb-1.jpg', 'http://www.huddletogether.com/projects/lightbox2/images/image-1.jpg', $image_options ); echo '  '; $image_options = array('title' => 'Optional caption Image 2.'); echo light_image( 'http://www.huddletogether.com/projects/lightbox2/images/thumb-2.jpg', 'http://www.huddletogether.com/projects/lightbox2/images/image-2.jpg', $image_options ); ?>

  » On a standart text link



Image set



  » For all images of the set

'http://www.huddletogether.com/projects/lightbox2/images/thumb-3.jpg', 'image' => 'http://www.huddletogether.com/projects/lightbox2/images/image-3.jpg', 'options' => array('title' => 'Roll over and click right side of image to move forward.') ); $images[] = array( 'thumbnail' => 'http://www.huddletogether.com/projects/lightbox2/images/thumb-4.jpg', 'image' => 'http://www.huddletogether.com/projects/lightbox2/images/image-4.jpg', 'options' => array('title' => 'Alternatively you can press the right arrow key.') ); $images[] = array( 'thumbnail' => 'http://www.huddletogether.com/projects/lightbox2/images/thumb-5.jpg', 'image' => 'http://www.huddletogether.com/projects/lightbox2/images/image-5.jpg', 'options' => array('title' => 'The script preloads the next image in the set as you\'re viewing.') ); $images[] = array( 'thumbnail' => 'http://www.huddletogether.com/projects/lightbox2/images/thumb-6.jpg', 'image' => 'http://www.huddletogether.com/projects/lightbox2/images/image-6.jpg', 'options' => array('title' => 'Press Esc to close') ); $link_options = array( 'title' => 'Lightbox2', 'slidename' => 'lightbox', ); echo light_slideshow($images, $link_options); ?>

  » For all images of the set as an html list




  » On one image (of the set or not)

'Lightbox2-image', 'slidename' => 'image_link_to_lightbox_slideshow', ); echo light_slide_image( 'http://gallery.coilblog.com/d/16-2/big_eyes_cat.jpg', $images, $link_options); ?>


  » On a text link

'Lightbox2-tewt', 'slidename' => 'text_link_to_lightbox_slideshow', ); echo light_slide_text('Click me to show the slide !!', $images, $link_options); ### 4 - To display a modal box with the content of the result of a symfony action Check the `_modalbox.php` template inside the plugin module. [php]



MODAL BOX


'sfLightboxPlugin', 'size' => '550x200', 'speed' => '6' ); // or //$link_options='title=sfLightboxPlugin size=450x180 speed=5'; //$link_options='title="sfLightboxPlugin" class=resizespeed_5 blocksize_450x180'; echo light_modallink( '» Link to test the modal box «', 'sfLightboxPlugin/modal', $link_options ); Of course here i use external images, but you can put path related to your **images** directory as you would do with the standard symfony `image_tag` function. You can change the class or options to adjust the wanted size or speed. You can use a route instead of a 'module/action'. Moreover the plugin includes a demo as a module, just enable the **sfLightbox** module in your `settings.yml` file then call the demo in your application *http://www.domain.com/sfLightbox*. You can also check the live demo on my [symfony blog](http://snippets.strangebuzz.com/sfLightbox). Be careful, if you have deleted the default symfony route you'll need to add one like the following to be able to view the demo included in the plugin: sfLightbox: url: /sfLightbox/:action param: { module: sfLightbox, action: test } That's all, have fun, [COil](http://www.strangebuzz.com) ;) Versions -------- (check the changelog TAB since the 1.0.7 version) * 1.0.6 * Updated lightbox library to v2.03.3 * 3 new new helpers (light_image_text, light_slide_image, light_slide_text) * Slideshow navigation with the keyboard (left, right, ESC) * 1.0.5 * Added a demo as a symfony module that does the excalty the same as the official demo page of the library * Change options handling for light_modallink to allow 3 different syntaxes * 1.0.4 * *LightboxHelper.php*: When creating a slideshow the caption of the images are now taken from the title attribute of each images if it exists whereas it is taken from the title attribute of the link if not (before it was always taken from the title link attribute) * 1.0.3 * *modalbox.js* now allows to call initModalbox several times (in case a modal link is created dynamically, after page load). Don't forget to call initModalbox() again when you create a new modal link. * config.php: corrected wrong paths stored in config * 1.0.2 * Helpers enhancements, options are now parsed so they can be scalar or array, just like the link_to helper light_modallink : added 'speed' and 'size' options (using regular classes is still allowed to keep BC) * modalbox.js fixes: removed some unused, unitialized variables that could cause JS errors in IE6 in some cases. * File structure changes: * Removed the 'lightbox' folder in web/css, web/js and web/images * Prepared for next release in web/images, as closelabel.gif will be culture-dependent * 1.0.1 * Some bug fixes in modalbox.js and also modalbox.css which affected IE6/7 and Opera. * Renaiming of some html identifiers in modalbox to allow use of modalbox and lightbox in the same document. (more info in modalbox.js file) * Modified default close image from 'closelabel.gif' which was culture dependent to 'close.gif' (only a close cross). * 1.0.0 * First version --- This plugin is sponsored by [SQL Technologies](http://www.sqltechnologies.com) ![SQL Technologies](http://www.php-debug.com/images/sql.gif)