uawdijnntqw1x1x1
IP : 216.73.216.219
Hostname : webm015.cluster127.gra.hosting.ovh.net
Kernel : Linux webm015.cluster127.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
/
pteabiscqq
/
www
/
188ee
/
..
/
libraries
/
phpass
/
..
/
quix
/
src
/
Shortcode
/
..
/
Application.php
/
/
<?php namespace ThemeXpert; class Application { /** * Assets driver name. * * @var string */ protected $assetsDriver; /** * Run Quix application */ public function run() { # Bootstrapping application $this->bootstrap(); } /** * Bootstrapping application required file. */ protected function bootstrap() { # Bootstrapping application required assets $this->bootstrapAssets(); } /** * Bootstrapping assets. */ protected function bootstrapAssets() { $methodName = "load{$this->assetsDriver}Assets"; $this->{$methodName}(); } /** * To load all joomla assets that required for the Quix application */ protected function loadJoomlaAssets() { jimport('joomla.application.component.helper'); jimport('quix.app.drivers.joomla.functions'); jimport('quix.app.drivers.joomla.joomla'); jimport('quix.app.drivers.joomla.template'); jimport('quix.app.drivers.joomla.css'); } /** * To load all wordpress assets that required for the Quix application */ protected function loadWordpressAssets() { require __DIR__ . '/../app/drivers/wordpress/functions.php'; require __DIR__ . '/../app/drivers/wordpress/wordpress.php'; require __DIR__ . '/../app/drivers/wordpress/template.php'; require __DIR__ . '/../app/drivers/wordpress/css.php'; } /** * To load all grav assets that required for the Quix application */ protected function loadGravAssets() { // grav assets loader goes to here... } /** * Set asset platform name. * * @param $platform */ public function setAssetPlatform($platform) { $this->assetsDriver = $platform; } }
/home/pteabiscqq/www/188ee/../libraries/phpass/../quix/src/Shortcode/../Application.php