*/ /** * This view is for letting the user know that there was an error with photo fulfilment * * @package PhotoAccess * @subpackage UserInterface */ class FulfillmentErrorView extends GalleryView { /** * @see GalleryView::loadTemplate */ function loadTemplate(&$template, &$form) { list ($ret, $module) = GalleryCoreApi::loadPlugin('module', 'photoaccess'); if ($ret) { return array($ret->wrap(__FILE__, __LINE__), null); } $template->title($module->translate('PhotoAccess Fulfillment Error')); return array(null, array('body' => 'modules/photoaccess/templates/FulfillmentError.tpl')); } } ?>