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.15.192.89
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 : TDummyDataSource.php
<?php /** * TDummyDataSource, TDummyDataSourceIterator 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; /** * TDummyDataSource class * * TDummyDataSource implements a dummy data collection with a specified number * of dummy data items. The number of virtual items can be set via * {@link setCount Count} property. You can traverse it using <b>foreach</b> * PHP statement like the following, * <code> * foreach($dummyDataSource as $dataItem) * </code> * * @author Qiang Xue <qiang.xue@gmail.com> * @since 3.0 */ class TDummyDataSource extends \Prado\TComponent implements \IteratorAggregate, \Countable { private $_count; /** * Constructor. * @param int $count number of (virtual) items in the data source. */ public function __construct($count) { $this->_count = $count; parent::__construct(); } /** * @return int number of (virtual) items in the data source. */ public function getCount() { return $this->_count; } /** * @return \Iterator iterator */ #[\ReturnTypeWillChange] public function getIterator() { return new TDummyDataSourceIterator($this->_count); } /** * Returns the number of (virtual) items in the data source. * This method is required by \Countable interface. * @return int number of (virtual) items in the data source. */ public function count(): int { return $this->getCount(); } }
Close