*/ /** * This controller will handle the deletion of a group * * @package GalleryCore * @subpackage UserInterface * */ class AdminDeleteGroupController extends GalleryController { /** * @see GalleryController::handleRequest */ function handleRequest($form) { global $gallery; $ret = GalleryCoreApi::assertUserIsSiteAdministrator(); if ($ret->isError()) { return array($ret->wrap(__FILE__, __LINE__), null); } $results = array(); $status = array(); $error = array(); $groupId = GalleryUtilities::getRequestVariables('groupId'); if (isset($form['action']['cancel'])) { /* Go back to the AdminGroups view */ $redirect['view'] = 'core.SiteAdmin'; $redirect['subView'] = 'core.AdminGroups'; } else if (isset($form['action']['delete'])) { /* Only allow users to delete GROUP_NORMAL groups. */ list ($ret, $group) = GalleryCoreApi::loadEntitiesById($groupId); if ($ret->isError()) { return array($ret->wrap(__FILE__, __LINE__), null); } /* * In theory we should never get to this point unless we're * operating on a valid group, so don't bother sending errors back * in case we can't delete. */ if ($group->getGroupType() == GROUP_NORMAL) { $ret = GalleryCoreApi::deleteEntityById($group->getId()); if ($ret->isError()) { return array($ret->wrap(__FILE__, __LINE__), null); } /* Request a redirect to the confirmation screen */ $redirect['view'] = 'core.SiteAdmin'; $redirect['subView'] = 'core.AdminGroups'; $status['deletedGroup'] = $group->getGroupName(); } } if (!empty($redirect)) { $results['redirect'] = $redirect; } else { $results['delegate']['view'] = 'core.SiteAdmin'; $results['delegate']['subView'] = 'core.AdminDeleteGroup'; } $results['status'] = $status; $results['error'] = $error; return array(GalleryStatus::success(), $results); } } /** * This view will prompt for confirmation ot delete a group * * @package GalleryCore * @subpackage UserInterface */ class AdminDeleteGroupView extends GalleryView { /** * @see GalleryView::loadTemplate */ function loadTemplate(&$template, &$form) { global $gallery; $ret = GalleryCoreApi::assertUserIsSiteAdministrator(); if ($ret->isError()) { return array($ret->wrap(__FILE__, __LINE__), null); } $groupId = GalleryUtilities::getRequestVariables('groupId'); list ($ret, $group) = GalleryCoreApi::loadEntitiesById($groupId); if ($ret->isError()) { return array($ret->wrap(__FILE__, __LINE__), null); } if ($form['formName'] != 'AdminDeleteGroup') { /* First time around initialize our form */ $form['groupName'] = $group->getGroupName(); $form['formName'] = 'AdminDeleteGroup'; } $AdminDeleteGroup = array(); $AdminDeleteGroup['group'] = $group->getMemberData(); /* Render the HTML body */ $template->setVariable('AdminDeleteGroup', $AdminDeleteGroup); $template->setVariable('controller', 'core.AdminDeleteGroup'); return array(GalleryStatus::success(), array('body' => 'modules/core/templates/AdminDeleteGroup.tpl')); } } ?>