uawdijnntqw1x1x1
IP : 216.73.217.20
Hostname : webm007.cluster114.gra.hosting.ovh.net
Kernel : Linux webm007.cluster114.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
locationbo
/
www
/
libraries
/
smartslider3
/
.
/
src
/
Framework
/
.
/
Image
/
ControllerAjaxImage.php
/
/
<?php namespace Nextend\Framework\Image; use Nextend\Framework\Controller\Admin\AdminVisualManagerAjaxController; use Nextend\Framework\Notification\Notification; use Nextend\Framework\Request\Request; class ControllerAjaxImage extends AdminVisualManagerAjaxController { protected $type = 'image'; public function actionLoadVisualForImage() { $this->validateToken(); $model = $this->getModel(); $image = Request::$REQUEST->getVar('image'); $visual = $model->getVisual($image); if (!empty($visual)) { $this->response->respond(array( 'visual' => $visual )); } else { if (($visual = $model->addVisual($image, ImageStorage::$emptyImage))) { $this->response->respond(array( 'visual' => $visual )); } } Notification::error(n2_('Unexpected error')); $this->response->error(); } public function actionAddVisual() { $this->validateToken(); $this->validatePermission('smartslider_edit'); $image = Request::$REQUEST->getVar('image'); $this->validateVariable(!empty($image), 'image'); $model = $this->getModel(); if (($visual = $model->addVisual($image, Request::$REQUEST->getVar('value')))) { $this->response->respond(array( 'visual' => $visual )); } Notification::error(n2_('Unexpected error')); $this->response->error(); } public function actionDeleteVisual() { $this->validateToken(); $this->validatePermission('smartslider_delete'); $visualId = Request::$REQUEST->getInt('visualId'); $this->validateVariable($visualId > 0, 'image'); $model = $this->getModel(); if (($visual = $model->deleteVisual($visualId))) { $this->response->respond(array( 'visual' => $visual )); } Notification::error(n2_('Not editable')); $this->response->error(); } public function actionChangeVisual() { $this->validateToken(); $this->validatePermission('smartslider_edit'); $visualId = Request::$REQUEST->getInt('visualId'); $this->validateVariable($visualId > 0, 'image'); $model = $this->getModel(); if (($visual = $model->changeVisual($visualId, Request::$REQUEST->getVar('value')))) { $this->response->respond(array( 'visual' => $visual )); } Notification::error(n2_('Unexpected error')); $this->response->error(); } public function getModel() { return new ModelImage($this); } }
/home/locationbo/www/libraries/smartslider3/./src/Framework/./Image/ControllerAjaxImage.php