uawdijnntqw1x1x1
IP : 216.73.216.6
Hostname : ps-hcp-gr-004.pouyasazan.org
Kernel : Linux ps-hcp-gr-004.pouyasazan.org 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
Disable Function : exec,system,passthru,shell_exec,proc_open,proc_close,popen,pcntl_exec,dl,show_source
OS : Linux
PATH:
/
home
/
hsabaeej
/
public_html
/
3c2fc
/
..
/
administrator
/
components
/
com_zt_layerslider
/
script.php
/
/
<?php /** * @package ZT LayerSlider * @author Hiepvu * @copyright(C) 2013 - ZooTemplate.com * @license PHP files are GNU/GPL **/ // No direct access defined('_JEXEC') or die; defined('DS') or define('DS', DIRECTORY_SEPARATOR); class com_ZT_LayersliderInstallerScript { /** * Constructor * * @param JAdapterInstance $adapter The object responsible for running this script */ public function __constructor(JAdapterInstance $adapter){ } /** * Called before any type of action * * @param string $route Which action is happening (install|uninstall|discover_install) * @param JAdapterInstance $adapter The object responsible for running this script * * @return boolean True on success */ public function preflight($route, JAdapterInstance $adapter){ } /** * Called after any type of action * * @param string $route Which action is happening (install|uninstall|discover_install) * @param JAdapterInstance $adapter The object responsible for running this script * * @return boolean True on success */ public function postflight($route, JAdapterInstance $adapter) { } /** * Called on installation * * @param JAdapterInstance $adapter The object responsible for running this script * * @return boolean True on success */ public function install(JAdapterInstance $adapter) { $parent = $adapter->getParent(); $path = array(); $path['src'] = $parent->getPath('source') . '/admin/assets/demo/layerslider'; $path['dest'] = JPATH_ROOT .DS. 'images' .DS.'layerslider'; $path['type'] = 'folder'; if (!file_exists($path['dest']) || $parent->isOverwrite()) { if (!$parent->copyFiles(array($path))) { // Install failed, rollback changes $parent->abort(JText::_('JLIB_INSTALLER_ABORT_COMP_INSTALL_MANIFEST')); return false; } } } /** * Called on update * * @param JAdapterInstance $adapter The object responsible for running this script * * @return boolean True on success */ public function update(JAdapterInstance $adapter) { } /** * Called on uninstallation * * @param JAdapterInstance $adapter The object responsible for running this script */ public function uninstall(JAdapterInstance $adapter) { } }
/home/hsabaeej/public_html/3c2fc/../administrator/components/com_zt_layerslider/script.php