0byt3m1n1
Path:
/
data
/
applications
/
aps
/
gallery
/
2.2-08
/
htdocs
/
modules
/
zipcart
/
[
Home
]
File: module.inc
<?php /* * Gallery - a web based photo album viewer and editor * Copyright (C) 2000-2007 Bharat Mediratta * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ /** * Cart plugin to download all images in a zip file * * @package ZipCart * @author Alan Harder <alan.harder@sun.com> * @version $Revision: 16034 $ */ class ZipCartModule extends GalleryModule { function ZipCartModule() { global $gallery; $this->setId('zipcart'); $this->setName($gallery->i18n('Zip Download')); $this->setDescription($gallery->i18n('Download cart items in a zip file')); $this->setVersion('1.0.8'); $this->setGroup('commerce', $gallery->i18n('Commerce')); $this->setCallbacks('getSiteAdminViews'); $this->setRequiredCoreApi(array(7, 4)); $this->setRequiredModuleApi(array(3, 0)); } /** * @see GalleryModule::performFactoryRegistrations */ function performFactoryRegistrations() { /* Register our cart plugin */ $ret = GalleryCoreApi::registerFactoryImplementation( 'CartPluginInterface_1_0', 'ZipCartPlugin', 'zipcart', 'modules/zipcart/classes/ZipCartPlugin.class', 'zipcart', null); if ($ret) { return $ret; } return null; } /** * @see GalleryModule::needsConfiguration */ function needsConfiguration() { list ($ret, $value) = $this->getParameter('path'); if ($ret) { return array($ret, null); } return array(null, empty($value)); } /** * @see GalleryModule::autoConfigure */ function autoConfigure() { global $gallery; list ($ret, $needsConfiguration) = $this->needsConfiguration(); if ($ret) { return array($ret, false); } if (!$needsConfiguration) { return array(null, true); } /* Try a bunch of likely seeming paths to see if any of them work. */ $platform =& $gallery->getPlatform(); $slash = $platform->getDirectorySeparator(); /* * Start with system paths. Tack on a trailing slash if necessary, * then tack on other likely paths, based on our OS */ $paths = array(); if (GalleryUtilities::isA($platform, 'WinNtPlatform')) { foreach (explode(';', getenv('PATH')) as $path) { $path = trim($path); if (empty($path)) { continue; } if ($path{strlen($path)-1} != $slash) { $path .= $slash; } $paths[] = $path . 'zip.exe'; } $paths[] = 'C:\\Program Files\\Zip\\zip.exe'; $paths[] = 'C:\\apps\Zip\\zip.exe'; $paths[] = 'C:\\Zip\\zip.exe'; $paths[] = 'C:\\cygwin\\bin\\zip.exe'; } else if (GalleryUtilities::isA($platform, 'UnixPlatform')) { foreach (explode(':', getenv('PATH')) as $path) { $path = trim($path); if (empty($path)) { continue; } if ($path{strlen($path)-1} != $slash) { $path .= $slash; } $paths[] = $path . 'zip'; } $paths[] = '/usr/bin/zip'; $paths[] = '/usr/local/bin/zip'; $paths[] = '/bin/zip'; $paths[] = '/sw/bin/zip'; } else { return array(null, false); } /* Now try each path in turn to see which ones work */ foreach ($paths as $path) { if (!$platform->isRestrictedByOpenBaseDir($path) && $platform->is_executable($path)) { /* We have a winner */ $ret = $this->setParameter('path', $path); if ($ret) { return array($ret, false); } return array(null, true); } } return array(null, false); } /** * @see GalleryModule::getSiteAdminViews */ function getSiteAdminViews() { return array(null, array(array('name' => $this->translate('Zip Download'), 'view' => 'zipcart.ZipCartAdmin'))); } /** * @see GalleryModule::getConfigurationView */ function getConfigurationView() { return 'zipcart.ZipCartAdmin'; } } ?>