*/ /** * This module allows gallery administrator * to maintain MIME types and corresponding file extensions * * @package Mime */ class MimeModule extends GalleryModule { function MimeModule() { global $gallery; $this->setId('mime'); $this->setName($gallery->i18n('MIME Maintenance')); $this->setDescription($gallery->i18n('Maintain MIME types and file extensions')); $this->setVersion('1.0.0'); $this->setGroup('data', $this->translate('Extra Data')); $this->setCallbacks('getSiteAdminViews'); $this->setRequiredCoreApi(array(6, 0)); $this->setRequiredModuleApi(array(2, 0)); } /** * @see GalleryModule::isRecommendedDuringInstall */ function isRecommendedDuringInstall() { return false; } /** * @see GalleryModule::autoConfigure */ function autoConfigure() { /* We don't require any special configuration */ return array(GalleryStatus::success(), true); } /** * @see GalleryModule::getSiteAdminViews */ function getSiteAdminViews() { return array(GalleryStatus::success(), array(array('name' => $this->translate('MIME Types'), 'view' => 'mime.MimeAdmin'))); } } ?>