X7ROOT File Manager
Current Path:
/usr/local/lsws/admin/html.6.3.2/classes
usr
/
local
/
lsws
/
admin
/
html.6.3.2
/
classes
/
??
..
??
CValidation.php
(26.65 KB)
??
ConfData.php
(860 B)
??
ConfigFile.php
(13.87 KB)
??
ConfigFileEx.php
(4.68 KB)
??
CustStatusCode.php
(2.19 KB)
??
DATTR_HELP.php
(773 B)
??
DATTR_HELP_ITEM.php
(2.53 KB)
??
DAttrBase.php
(12.42 KB)
??
DFileSect.php
(582 B)
??
DPage.php
(3.75 KB)
??
DTbl.php
(17.52 KB)
??
DUtil.php
(4.22 KB)
??
DispInfo.php
(4.36 KB)
??
GUIBase.php
(3.25 KB)
??
PathTool.php
(3.02 KB)
??
XmlTreeBuilder.php
(3.27 KB)
??
blowfish.php
(25.68 KB)
??
jCryption.php
(15.92 KB)
??
ws
Editing: ConfData.php
<?php class CVal { private $_v = null; //value private $_e = null; //err public function __construct($v, $e=null) { $this->_v = $v; $this->_e = $e; } public function GetVal() { return $this->_v; } public function SetVal($v) { $this->_v = $v; } public function HasVal() { // 0 is valid return ($this->_v !== null && $this->_v !== ''); } public function GetErr() { return $this->_e; } public function SetErr($e) { $this->_e = $e; } public function HasErr() { return $this->_e != null; } } class ConfData { public $_data; public $_path; public $_type; //{'serv','admin','vh','tp'} public $_id; public function __construct($type, $path, $id=null) { $this->_data = []; $this->_type = $type; $this->_path = $path; $this->_id = $id; } public function setId($id) { $this->_id = $id; } }
Upload File
Create Folder