Esempio n. 1
0
 /**
  * Function makes some actions based on what is in $this->request
  * @return void
  */
 protected function performAction()
 {
     $requestMethod = \Bitrix\Main\Context::getCurrent()->getServer()->getRequestMethod();
     $this->componentData['FORM_ROWS'] = Helper::getDetailPageRows();
     $this->dbResult['CALCULATED_BACK_URL'] = false;
     if (strlen($this->dbResult['REQUEST']['GET']['return_url'])) {
         $this->dbResult['SPECIFIED_BACK_URL'] = $this->dbResult['REQUEST']['GET']['return_url'];
         $this->dbResult['CALCULATED_BACK_URL'] = $this->dbResult['REQUEST']['GET']['return_url'];
     }
     if (check_bitrix_sessid()) {
         $actionSave = $requestMethod == 'POST' && isset($this->dbResult['REQUEST']['POST']['save']);
         $actionApply = $requestMethod == 'POST' && isset($this->dbResult['REQUEST']['POST']['apply']);
         $actionDelete = $requestMethod == 'GET' && isset($this->dbResult['REQUEST']['GET']['delete']);
         $id = isset($this->dbResult['REQUEST']['POST']['loc_id']) ? intval($this->dbResult['REQUEST']['POST']['loc_id']) : 0;
         if ($id <= 0 && isset($this->dbResult['REQUEST']['POST']['ID'])) {
             $id = intval($this->dbResult['REQUEST']['POST']['ID']) > 0 ? intval($this->dbResult['REQUEST']['POST']['ID']) : 0;
         }
         $res = false;
         if ($actionSave || $actionApply) {
             if ($id) {
                 $res = Helper::update($id, $this->dbResult['REQUEST']['POST']);
             } else {
                 $res = Helper::add($this->dbResult['REQUEST']['POST']);
                 $id = $res['id'];
             }
         } elseif ($actionDelete) {
             $locID = isset($this->arParams['LOC_ID']) ? intval($this->arParams['LOC_ID']) : 0;
             if ($locID) {
                 $res = Location\LocationTable::getById($locID)->fetch();
                 $parentOfDeleted = intval($res['PARENT_ID']);
                 $res = Helper::delete($locID);
             }
         }
         if ($res !== false) {
             if (!$res['success']) {
                 $this->errors['NONFATAL'] = array_merge($this->errors['NONFATAL'], $res['errors']);
                 $this->componentData['ACTION_FAILURE'] = true;
             } else {
                 $url = $this->dbResult['CALCULATED_BACK_URL'];
                 if ($actionApply) {
                     $url = false;
                 } else {
                     if ($actionSave) {
                         // get parent (only for locations)
                         $res = Location\LocationTable::getById($id)->fetch();
                         if (!$url) {
                             $url = CComponentEngine::MakePathFromTemplate($this->arParams['PATH_TO_LOCATIONS_LIST']) . '?PARENT_ID=' . intval($res['PARENT_ID']);
                         }
                     } elseif ($actionDelete) {
                         if (!$url) {
                             $url = CComponentEngine::MakePathFromTemplate($this->arParams['PATH_TO_LOCATIONS_LIST']) . '?PARENT_ID=' . intval($parentOfDeleted);
                         }
                     }
                 }
                 if ($url) {
                     LocalRedirect($url);
                 }
             }
         }
     }
 }
Esempio n. 2
0
			$ids = Helper::getIdsByFilter($listParams['filter']);

		@set_time_limit(0);

		foreach($ids as $id)
		{
			if(!($id = intval($id)))
				continue;

			if($_REQUEST['action'] == 'delete')
			{
				$DB->StartTransaction();

				try
				{
					$res = Helper::delete($id, true);
					if(!$res['success'])
						throw new Main\SystemException(Loc::getMessage('SALE_LOCATION_L_ITEM').' '.$id.' : '.implode('<br />', $res['errors']));
					$DB->Commit();
				}
				catch(Main\SystemException $e)
				{
					$lAdmin->AddGroupError(Loc::getMessage('SALE_LOCATION_L_ITEM_DELETE_ERROR').": <br /><br />".$e->getMessage(), $id);
					$DB->Rollback();
				}
			}
		}

		Location\LocationTable::resetLegacyPath();
	}
			$ids = Helper::getIdsByFilter($listParams['filter']);

		@set_time_limit(0);

		foreach($ids as $id)
		{
			if(!($id = intval($id)))
				continue;

			if($_REQUEST['action'] == 'delete')
			{
				$DB->StartTransaction();

				try
				{
					$res = Helper::delete($id);
					if(!$res['success'])
						throw new Main\SystemException(Loc::getMessage('SALE_LOCATION_L_ITEM').' '.$id.' : '.implode('<br />', $res['errors']));
					$DB->Commit();
				}
				catch(Main\SystemException $e)
				{
					$lAdmin->AddGroupError(Loc::getMessage('SALE_LOCATION_L_ITEM_DELETE_ERROR').": <br /><br />".$e->getMessage(), $id);
					$DB->Rollback();
				}
			}
		}
	}

	$adminResult = Helper::getList($listParams, $sTableID);
	$lAdmin->NavText($adminResult->GetNavPrint(Loc::getMessage('SALE_LOCATION_L_PAGES'), true)); // do not relocate the call relative to DisplayList(), or you`ll catch a strange nav bar disapper bug