*/ /** * This controller will handle the deletion of an item * * @package GalleryCore * @subpackage UserInterface */ class ItemDeleteSingleController extends GalleryController { /** * @see GalleryController::handleRequest */ function handleRequest($form) { global $gallery; $itemId = GalleryUtilities::getRequestVariables('itemId'); $status = array(); $error = array(); if (isset($form['action']['delete'])) { /* Get the root album id, so we don't try to delete it */ list ($ret, $rootId) = GalleryCoreApi::getPluginParameter('module', 'core', 'id.rootAlbum'); if ($ret) { return array($ret->wrap(__FILE__, __LINE__), null); } /* The view shouldn't let us get this far if we don't have delete permission */ $ret = GalleryCoreApi::assertHasItemPermission($itemId, 'core.delete'); if ($ret) { return array($ret->wrap(__FILE__, __LINE__), null); } list ($ret, $item) = GalleryCoreApi::loadEntitiesById($itemId); if ($ret) { return array($ret->wrap(__FILE__, __LINE__), null); } /* The view shouldn't let us try to delete the root album, either */ if ($itemId == $rootId) { return array(GalleryCoreApi::error(ERROR_BAD_PARAMETER, __FILE__, __LINE__, "Can't delete the root album"), null); } $ret = GalleryCoreApi::deleteEntityById($itemId); if ($ret) { return array($ret->wrap(__FILE__, __LINE__), null); } list ($ret, $success) = GalleryCoreApi::guaranteeAlbumHasThumbnail($item->getParentId()); if ($ret) { return array($ret->wrap(__FILE__, __LINE__), null); } /* What do we do if we weren't successful? No thumbnail, I guess */ $status['deleted'] = 1; /* Figure out where to redirect upon success */ $redirect['view'] = 'core.ItemAdmin'; $redirect['subView'] = 'core.ItemDeleteConfirmation'; $redirect['itemId'] = $item->getParentId(); } if (!empty($redirect)) { $results['redirect'] = $redirect; } else { $results['delegate']['view'] = 'core.ItemAdmin'; $results['delegate']['subView'] = 'core.ItemDeleteSingle'; } $results['status'] = $status; $results['error'] = $error; return array(null, $results); } } /** * This view will prompt for confirmation on the deletion of an item * * @package GalleryCore * @subpackage UserInterface */ class ItemDeleteSingleView extends GalleryView { /** * @see GalleryView::loadTemplate */ function loadTemplate(&$template, &$form) { global $gallery; $itemId = GalleryUtilities::getRequestVariables('itemId'); if ($form['formName'] != 'ItemDeleteSingle') { $form['destination'] = ''; $form['formName'] = 'ItemDeleteSingle'; } list($ret, $item) = GalleryCoreApi::loadEntitiesById($itemId); if ($ret) { return array($ret->wrap(__FILE__, __LINE__), null); } /* Get child counts */ list ($ret, $childCountTable) = GalleryCoreApi::fetchDescendentCounts(array($itemId)); if ($ret) { return array($ret->wrap(__FILE__, __LINE__), null); } $childCount = isset($childCountTable[$itemId]) ? $childCountTable[$itemId] : 0; $ItemDeleteSingle = array(); $ItemDeleteSingle['itemTypeNames'] = $item->itemTypeName(); $ItemDeleteSingle['childCount'] = $childCount; $template->setVariable('controller', 'core.ItemDeleteSingle'); $template->setVariable('ItemDeleteSingle', $ItemDeleteSingle); return array(null, array('body' => 'modules/core/templates/ItemDeleteSingle.tpl')); } /** * @see GalleryView::getViewDescription() */ function getViewDescription() { list ($ret, $core) = GalleryCoreApi::loadPlugin('module', 'core'); if ($ret) { return array($ret->wrap(__FILE__, __LINE__), null); } list ($ret, $item) = $this->_getItem(); if ($ret) { return array($ret->wrap(__FILE__, __LINE__), null); } $itemTypeNames = $item->itemTypeName(true); return array(null, $core->translate(array('text' => 'delete %s', 'arg1' => $itemTypeNames[1]))); } } ?>