<?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; } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
ws | Folder | 0755 |
|
|
CValidation.php | File | 26.65 KB | 0644 |
|
ConfData.php | File | 860 B | 0644 |
|
ConfigFile.php | File | 13.87 KB | 0644 |
|
ConfigFileEx.php | File | 4.68 KB | 0644 |
|
CustStatusCode.php | File | 2.19 KB | 0644 |
|
DATTR_HELP.php | File | 773 B | 0644 |
|
DATTR_HELP_ITEM.php | File | 2.53 KB | 0644 |
|
DAttrBase.php | File | 12.42 KB | 0644 |
|
DFileSect.php | File | 582 B | 0644 |
|
DPage.php | File | 3.75 KB | 0644 |
|
DTbl.php | File | 17.52 KB | 0644 |
|
DUtil.php | File | 4.22 KB | 0644 |
|
DispInfo.php | File | 4.36 KB | 0644 |
|
GUIBase.php | File | 3.25 KB | 0644 |
|
PathTool.php | File | 3.02 KB | 0644 |
|
XmlTreeBuilder.php | File | 3.27 KB | 0644 |
|
blowfish.php | File | 25.68 KB | 0644 |
|
jCryption.php | File | 15.92 KB | 0644 |
|