*/ /** * The implementation of the Slideshow module * * @package Slideshow */ class SlideshowModule extends GalleryModule { function SlideshowModule() { global $gallery; $this->setId('slideshow'); $this->setName($gallery->i18n('Slideshow')); $this->setDescription($gallery->i18n('Slideshow')); $this->setVersion('1.0.3'); $this->setGroup('display', $gallery->i18n('Display')); $this->setCallbacks('getItemLinks'); $this->setRequiredCoreApi(array(7, 0)); $this->setRequiredModuleApi(array(3, 0)); } /** * @see GalleryModule::performFactoryRegistrations() */ function performFactoryRegistrations() { $ret = GalleryCoreApi::registerFactoryImplementation( 'SlideshowInterface_1_0', 'SlideshowImpl', 'Slideshow', 'modules/slideshow/classes/SlideshowImpl.class', 'slideshow', null); if ($ret) { return $ret->wrap(__FILE__, __LINE__); } return null; } /** * @see GalleryModule::getItemLinks() */ function getItemLinks($items, $wantsDetailedLinks, $permissions) { $links = array(); foreach ($items as $item) { $itemId = $item->getId(); if (isset($wantsDetailedLinks[$itemId])) { $links[$itemId][] = array('text' => $this->translate('View Slideshow'), 'params' => array( 'view' => 'slideshow.Slideshow', 'itemId' => $itemId)); } } return array(null, $links); } /** * @see GalleryModule::getRewriteRules */ function getRewriteRules() { $rules = array(); $rule = array(); $rule['comment'] = $this->translate('View Slideshow'); $rule['match'] = array('view' => 'slideshow.Slideshow'); $rule['onLoad'] = array('rewrite', 'RewriteSimpleHelper', 'loadItemIdFromPath'); $rule['pattern'] = 'v/%path%/slideshow.html'; $rule['keywords'] = array( 'path' => array( 'pattern' => '([^?]+)', 'function' => array('rewrite', 'RewriteSimpleHelper', 'parsePath'), 'help' => $this->translate('Path to an item (eg, /album/image.jpg.html)'))); $rules[] = $rule; return $rules; } } ?>