public function thumbnailAddAction()
 {
     $this->checkPermission("thumbnails");
     $alreadyExist = false;
     try {
         Asset\Image\Thumbnail\Config::getByName($this->getParam("name"));
         $alreadyExist = true;
     } catch (\Exception $e) {
         $alreadyExist = false;
     }
     if (!$alreadyExist) {
         $pipe = new Asset\Image\Thumbnail\Config();
         $pipe->setName($this->getParam("name"));
         $pipe->save();
     }
     $this->_helper->json(array("success" => !$alreadyExist, "id" => $pipe->getName()));
 }
Example #2
0
 public function thumbnailAddAction()
 {
     $this->checkPermission("thumbnails");
     $success = false;
     $pipe = Asset\Image\Thumbnail\Config::getByName($this->getParam("name"));
     if (!$pipe) {
         $pipe = new Asset\Image\Thumbnail\Config();
         $pipe->setName($this->getParam("name"));
         $pipe->save();
         $success = true;
     }
     $this->_helper->json(["success" => $success, "id" => $pipe->getName()]);
 }