Автор: N.V.
Наследование: extends Scalr\Model\Entity\GlobalVariable
Пример #1
0
 /**
  * Deletes farm's global variable
  *
  * @param   int     $farmId Numeric identifier of the Farm
  * @param   string  $name   Name of variable
  *
  * @return  ResultEnvelope
  *
  * @throws  ApiErrorException
  * @throws  ModelException
  */
 public function deleteVariableAction($farmId, $name)
 {
     $this->getFarm($farmId, Acl::PERM_FARMS_UPDATE);
     $fetch = $this->getGlobalVariable($name, $this->getVariableInstance(), 0, $farmId);
     $variable = GlobalVariable\FarmGlobalVariable::findPk($farmId, $name);
     if (empty($fetch)) {
         throw new ApiErrorException(404, ErrorMessage::ERR_OBJECT_NOT_FOUND, "Requested Global Variable does not exist.");
     }
     if (empty($variable)) {
         throw new ApiErrorException(403, ErrorMessage::ERR_SCOPE_VIOLATION, "You can only delete Global Variables declared in Farm scope.");
     }
     $variable->delete();
     return $this->result(null);
 }