*/ /** * Photo printing at photoworks.com * * @package PhotoAccess */ class PhotoAccessModule extends GalleryModule { function PhotoAccessModule() { global $gallery; $this->setId('photoaccess'); $this->setName($gallery->i18n('PhotoWorks')); $this->setDescription($gallery->i18n('PhotoWorks Photo Printing Module')); $this->setVersion('1.0.4'); /* Update upgrade() too */ $this->setGroup('commerce', $gallery->i18n('Commerce')); $this->setCallbacks('getItemLinks'); $this->setRequiredCoreApi(array(7, 0)); $this->setRequiredModuleApi(array(3, 0)); } /** * @see GalleryModule::upgrade() */ function upgrade($currentVersion) { global $gallery; if (!isset($currentVersion)) { $currentVersion = '0'; } else if (version_compare($currentVersion, '1.0.0', '<')) { /* Instead of enumerating all previous versions... */ $currentVersion = '1.0.0'; } list ($ret, $coreParams) = GalleryCoreApi::fetchAllPluginParameters('module', 'core'); if ($ret) { return $ret->wrap(__FILE__, __LINE__); } switch ($currentVersion) { case '0': /* Register our permission */ $ret = GalleryCoreApi::registerPermission($this->getId(), 'photoaccess.print', $gallery->i18n('[photoaccess] Print')); if ($ret) { return $ret->wrap(__FILE__, __LINE__); } /* Give everybody print permission by default */ $ret = GalleryCoreApi::addGroupPermission( $coreParams['id.rootAlbum'], $coreParams['id.everybodyGroup'], 'photoaccess.print', true); if ($ret) { return $ret->wrap(__FILE__, __LINE__); } break; case '1.0.0': $ret = GalleryCoreApi::registerPermission($this->getId(), 'photoaccess.print', $gallery->i18n('[photoaccess] Print')); if ($ret) { return $ret->wrap(__FILE__, __LINE__); } $ret = GalleryCoreApi::addGroupPermission( $coreParams['id.rootAlbum'], $coreParams['id.everybodyGroup'], 'photoaccess.print', true); if ($ret) { return $ret->wrap(__FILE__, __LINE__); } case '1.0.1': case '1.0.2': case '1.0.3': case 'end of upgrade path': break; default: return GalleryCoreApi::error(ERROR_BAD_PLUGIN, __FILE__, __LINE__, sprintf('Unknown module version %s', $currentVersion)); } return null; } /** * @see GalleryModule::performFactoryRegistrations() */ function performFactoryRegistrations() { $ret = GalleryCoreApi::registerFactoryImplementation( 'CartPluginInterface_1_0', 'PhotoAccessCartPlugin', 'photoaccess', 'modules/photoaccess/classes/PhotoAccessCartPlugin.class', 'photoaccess', 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]) && isset($permissions[$itemId]['photoaccess.print']) && GalleryUtilities::isA($item, 'GalleryPhotoItem')) { $links[$itemId][] = array('text' => $this->translate('Print on PhotoWorks.com'), 'params' => array('controller' => 'photoaccess.PrintPhoto', 'itemId' => $itemId, 'returnUrl' => '%CURRENT_URL%')); } } return array(null, $links); } } ?>