One Hat Cyber Team
Your IP :
216.73.216.14
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
backup
/
oldserver
/
6
/
www
/
html
/
horde
/
gollem
/
lib
/
View File Name :
Test.php
<?php /** * This class provides the Gollem configuration for the test script. * * Copyright 2010-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (GPL). If you * did not receive this file, see http://www.horde.org/licenses/gpl. * * @author Michael Slusarz <slusarz@horde.org> * @package Gollem */ class Gollem_Test extends Horde_Test { /** * The module list * * @var array */ protected $_moduleList = array( 'ftp' => array( 'descrip' => 'FTP Support', 'error' => 'You need FTP support compiled into PHP if you plan to use the FTP VFS driver (see config/backends.php).' ), 'ssh2' => array( 'descrip' => 'SSH2 Support', 'error' => 'You need the SSH2 PECL module if you plan to use the SSH2 VFS driver (see config/backends.php).' ) ); /** * PHP settings list. * * @var array */ protected $_settingsList = array(); /** * PEAR modules list. * * @var array */ protected $_pearList = array(); /** * Inter-Horde application dependencies. * * @var array */ protected $_appList = array(); /** */ public function __construct() { parent::__construct(); $this->_fileList += array( 'config/backends.php' => null, 'config/prefs.php' => null ); } /** * Any application specific tests that need to be done. * * @return string HTML output. */ public function appTests() { } }