The Lightbox Helper by eVifweb
is a PHP class that will turn a folder of pictures
on a server into flawless Lightbox galleries with
rich and deep "social share" and
"social media preview" technology integrations.
Lightbox is a script used to overlay images on the
current page. This is the original lightbox
script, by the way, ladies and gentlemen.
As hosting circumstances require, the eVifweb
Lightbox Helper can provide clean HTML
<HEAD> output of versions 2.03.3,
2.10.0, and 2.11.3 of Lightbox,...the
original lightbox script.
There are also a number of additional and supporting (or required) client-side JS and CSS frameworks
which, being packaged with product, are made to be
instantly available by the
Lightbox Helper; the included frameworks cover
Lightbox version specific requirements such as
either jQuery or prototype.js.
The Lightbox Helper provides over 15 different
CSS frameworks that enhance UI layout control via one kind of cheeky grid matrix system or another.
The Lightbox Helper by
eVifweb brings a supreme enrichment of options to the table for
the management of presentation layer objects in the DOM.
All of this is a snap to setup, and it works on all modern browsers!
Launch the Demo! Download. MIT License.
<?php /* // 5 :: // Code is Poetry */ require('_crnrstn.root.inc.php'); include_once(CRNRSTN_ROOT . '/_lightbox_helper/class/assets/lightbox_helper.inc.php'); // // INITIALIZE GALLERY URL // AND DIRECTORY PATHS. $application_directory = ''; $http_path = $oLightbox_Helper->return_website_url($application_directory); $images_atl_directory = '/var/www/html/common/imgs/gallery/atlanta'; $thumbnail_atl_directory = '/var/www/html/common/imgs/gallery/atlanta/_thumbs'; $images_seattle_directory = '/var/www/html/common/imgs/gallery/seattle'; $thumbnail_seattle_directory = '/var/www/html/common/imgs/gallery/seattle/_thumbs'; // // CREATE A NEW LIGHTBOX // GALLERY :: ATLANTA. $oLightbox_Helper = new lightbox_helper_by_eVifweb($http_path, $images_atl_directory, $thumbnail_atl_directory); // // OUTPUT THE LIGHTBOX // GALLERY HTML :: ATLANTA. echo $oLightbox_Helper->return_lightbox_gallery(); // // CREATE A NEW LIGHTBOX // GALLERY :: SEATTLE. $oLightbox_Helper->new_lightbox_gallery($images_seattle_directory, $thumbnail_seattle_directory); // // OUTPUT THE LIGHTBOX // GALLERY HTML :: SEATTLE. echo $oLightbox_Helper->return_lightbox_gallery($images_seattle_directory); exit();