*/ /** * Search Module * * This module provides support for searching the Gallery * * @package Search */ class SearchModule extends GalleryModule { function SearchModule() { global $gallery; $this->setId('search'); $this->setName($gallery->i18n('Search')); $this->setDescription($gallery->i18n('Search your Gallery')); $this->setVersion('1.0.3'); $this->setGroup('gallery', $gallery->i18n('Gallery')); $this->setCallbacks(''); $this->setRequiredCoreApi(array(7, 0)); $this->setRequiredModuleApi(array(3, 0)); } } ?>