uawdijnntqw1x1x1
IP : 216.73.217.24
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
/
.
/
.
/
administrator
/
components
/
com_widgetkit
/
src
/
Controller
/
ImageController.php
/
/
<?php namespace YOOtheme\Widgetkit\Controller; use YOOtheme\Framework\Routing\Controller; use YOOtheme\Framework\Routing\Exception\HttpException; class ImageController extends Controller { public function imageAction($file, $hash, $w = '', $h = '', $strategy = '') { if (!$image = $this['image']->create($file)) { throw new HttpException(404); } $image->setOptions(compact('w', 'h', 'strategy')); if ($image->getHash() !== $hash) { throw new HttpException(401); } $image->cache(true); return $this['response']->raw($image->output()); } public static function getRoutes() { return array( array('image', 'imageAction') ); } }
/home/locationbo/www/././administrator/components/com_widgetkit/src/Controller/ImageController.php