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.116.52.29
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 : TActiveTableRow.php
<?php /** * TActiveTableRow and TActiveTableRowEventParameter class file * * @author LANDWEHR Computer und Software GmbH <programmierung@landwehr-software.de> * @link http://www.landwehr-software.de/ * @copyright Copyright © 2009 LANDWEHR Computer und Software GmbH * @license http://www.pradosoft.com/license/ * @package System.Web.UI.ActiveControls * @version $Id$ */ /** * Includes the following used classes */ Prado::using('System.Web.UI.WebControls.TTableRow'); Prado::using('System.Web.UI.ActiveControls.TActiveControlAdapter'); Prado::using('System.Web.UI.ActiveControls.TCallbackEventParameter'); /** * TActiveTableRow class. * * TActiveTableRow is the active counterpart to the original {@link TTableRow} control * and displays a table row. The table cells in the row can be accessed * via {@link getCells Cells}. The horizontal and vertical alignments of the row * are specified via {@link setHorizontalAlign HorizontalAlign} and * {@link setVerticalAlign VerticalAlign} properties, respectively. * * TActiveTableRow allows the contents of the table row to be changed during callback. When * {@link onRowSelected RowSelected} property is set, selecting (clicking on) the row will * perform a callback request causing {@link onRowSelected OnRowSelected} event to be fired. * * It will also respond to a bubbled {@link onCellSelected OnCellSelected} event of a * {@link TActiveTableCell} child control and fire a {@link onRowSelected OnRowSelected} event. * * TActiveTableRow allows the client-side row contents to be updated during a * callback response by getting a new writer, invoking the render method and flushing the * output, similar to a {@link TActivePanel} control. * <code> * function callback_request($sender, $param) * { * $this->active_row->render($param->getNewWriter()); * } * </code> * * Please refer to the original documentation of the regular counterpart for usage. * * @author LANDWEHR Computer und Software GmbH <programmierung@landwehr-software.de> * @package System.Web.UI.ActiveControls * @version $Id$ * @since 3.1.9 */ class TActiveTableRow extends TTableRow implements ICallbackEventHandler, IActiveControl { /** * @var TTable parent table control containing the row */ private $_table; /** * Creates a new callback control, sets the adapter to TActiveControlAdapter. * */ public function __construct() { parent::__construct(); $this->setAdapter(new TActiveControlAdapter($this)); } /** * @return TBaseActiveCallbackControl standard callback control options. */ public function getActiveControl() { return $this->getAdapter()->getBaseActiveControl(); } /** * @return TCallbackClientSide client side request options. */ public function getClientSide() { return $this->getAdapter()->getBaseActiveControl()->getClientSide(); } /** * @return string corresponding javascript class name for this TActiveTableRow. */ protected function getClientClassName() { return 'Prado.WebUI.TActiveTableRow'; } /** * Raises the callback event. This method is required by {@link ICallbackEventHandler} * interface. It will raise {@link onRowSelected OnRowSelected} event with a * {@link TActiveTableRowEventParameter} containing the zero-based index of the * TActiveTableRow. * This method is mainly used by framework and control developers. * @param TCallbackEventParameter the event parameter */ public function raiseCallbackEvent($param) { $parameter = new TActiveTableRowEventParameter($this->getResponse(), $param->getCallbackParameter(), $this->getRowIndex()); $this->onRowSelected($parameter); } /** * This method overrides parent's implementation and raises the control's * callback event. This will fire the {@link onRowSelected OnRowSelected} * event if an appropriate event handler is implemented. * @param TControl the sender of the event * @param TEventParameter event parameter * @return boolean whether the event bubbling should stop here. */ public function bubbleEvent($sender, $param) { if ($param instanceof TActiveTableCellEventParameter) { $this->raiseCallbackEvent($param); return true; } else return false; } /** * This method is invoked when a callback is requested. The method raises * 'OnRowSelected' event to fire up the event handlers. If you override this * method, be sure to call the parent implementation so that the event * handler can be invoked. * @param TActiveTableRowEventParameter event parameter to be passed to the event handlers */ public function onRowSelected($param) { $this->raiseEvent('OnRowSelected', $this, $param); } /** * Ensure that the ID attribute is rendered and registers the javascript code * for initializing the active control if the event handler for the * {@link onRowSelected OnRowSelected} event is set. * @param THtmlWriter the writer responsible for rendering */ protected function addAttributesToRender($writer) { parent::addAttributesToRender($writer); $writer->addAttribute('id', $this->getClientID()); if ($this->hasEventHandler('OnRowSelected')) $this->getActiveControl()->registerCallbackClientScript($this->getClientClassName(), $this->getPostBackOptions()); } /** * Renders and replaces the row's content on the client-side. When render() is * called before the OnPreRender event, such as when render() is called during * a callback event handler, the rendering is defered until OnPreRender event * is raised. * @param THtmlWriter html writer */ public function render($writer) { if ($this->getHasPreRendered()) { parent::render($writer); if ($this->getActiveControl()->canUpdateClientSide()) $this->getPage()->getCallbackClient()->replaceContent($this, $writer); } else { $this->getPage()->getAdapter()->registerControlToRender($this, $writer); // If we update a TActiveTableRow on callback, we shouldn't update all childs, // because the whole content will be replaced by the parent. if ($this->getHasControls()) { foreach ($this->findControlsByType('IActiveControl', false) as $control) $control->getActiveControl()->setEnableUpdate(false); } } } /** * Returns postback specifications for the table row. * This method is used by framework and control developers. * @return array parameters about how the row defines its postback behavior. */ protected function getPostBackOptions() { $options['ID'] = $this->getClientID(); $options['EventTarget'] = $this->getUniqueID(); return $options; } /** * Returns the zero-based index of the TActiveTableRow within the {@link TTableRowCollection} * of the parent {@link TTable} control. Raises a {@link TConfigurationException} if the row * is no member of the row collection. * @return integer the zero-based index of the row */ public function getRowIndex() { foreach ($this->getTable()->getRows() as $key => $row) if ($row == $this) return $key; throw new TConfigurationException('tactivetablerow_control_notincollection', get_class($this), $this->getUniqueID()); } /** * Returns the parent {@link TTable} control by looping through all parents until a {@link TTable} * is found. Raises a {@link TConfigurationException} if no table control is found. * @return TTable the parent table control */ public function getTable() { if ($this->_table === null) { $table = $this->getParent(); while (!($table instanceof TTable) && $table !== null) { $table = $table->getParent(); } if ($table instanceof TTable) $this->_table = $table; else throw new TConfigurationException('tactivetablerow_control_outoftable', get_class($this), $this->getUniqueID()); } return $this->_table; } } /** * TActiveTableRowEventParameter class. * * The TActiveTableRowEventParameter provides the parameter passed during the callback * requestion in the {@link getCallbackParameter CallbackParameter} property. The * callback response content (e.g. new HTML content) must be rendered * using an THtmlWriter obtained from the {@link getNewWriter NewWriter} * property, which returns a <b>NEW</b> instance of TCallbackResponseWriter. * * The {@link getSelectedRowIndex SelectedRowIndex} is a zero-based index of the * TActiveTableRow , -1 if the row is not part of the row collection (this shouldn't * happen though since an exception is thrown before). * * @author LANDWEHR Computer und Software GmbH <programmierung@landwehr-software.de> * @package System.Web.UI.ActiveControls * @since 3.1.9 */ class TActiveTableRowEventParameter extends TCallbackEventParameter { /** * @var integer the zero-based index of the row. */ private $_selectedRowIndex = -1; /** * Creates a new TActiveTableRowEventParameter. */ public function __construct($response, $parameter, $index=-1) { parent::__construct($response, $parameter); $this->_selectedRowIndex = $index; } /** * Returns the zero-based index of the {@link TActiveTableRow} within the * {@link TTableRowCollection} of the parent {@link TTable} control. * @return integer the zero-based index of the row. */ public function getSelectedRowIndex() { return $this->_selectedRowIndex; } }
Close