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 /
paroquia-rm.20191011 /
libraries /
cms /
html /
Delete
Unzip
Name
Size
Permission
Date
Action
language
[ DIR ]
drwxr-xr-x
2017-09-19 09:00
access.php
7.97
KB
-rw-r--r--
2019-05-07 05:34
actionsdropdown.php
5.61
KB
-rw-r--r--
2019-05-07 05:34
adminlanguage.php
1.38
KB
-rw-r--r--
2019-05-07 05:34
batch.php
3.14
KB
-rw-r--r--
2019-05-07 05:34
behavior.php
30.73
KB
-rw-r--r--
2019-05-07 05:34
bootstrap.php
33.12
KB
-rw-r--r--
2019-05-07 05:34
category.php
5.43
KB
-rw-r--r--
2019-05-07 05:34
content.php
1.93
KB
-rw-r--r--
2019-05-07 05:34
contentlanguage.php
1.54
KB
-rw-r--r--
2019-05-07 05:34
date.php
2.04
KB
-rw-r--r--
2019-05-07 05:34
debug.php
1.45
KB
-rw-r--r--
2019-05-07 05:34
dropdown.php
8.79
KB
-rw-r--r--
2019-05-07 05:34
email.php
3.66
KB
-rw-r--r--
2019-05-07 05:34
form.php
1.69
KB
-rw-r--r--
2019-05-07 05:34
formbehavior.php
3.76
KB
-rw-r--r--
2019-05-07 05:34
grid.php
10.33
KB
-rw-r--r--
2019-05-07 05:34
icons.php
1.52
KB
-rw-r--r--
2019-05-07 05:34
jgrid.php
16.26
KB
-rw-r--r--
2019-05-07 05:34
jquery.php
3.67
KB
-rw-r--r--
2019-05-07 05:34
links.php
2.51
KB
-rw-r--r--
2019-05-07 05:34
list.php
6.69
KB
-rw-r--r--
2019-05-07 05:34
menu.php
9.61
KB
-rw-r--r--
2019-05-07 05:34
number.php
3.5
KB
-rw-r--r--
2019-05-07 05:34
rules.php
8.06
KB
-rw-r--r--
2019-05-07 05:34
searchtools.php
4.16
KB
-rw-r--r--
2019-05-07 05:34
select.php
27.49
KB
-rw-r--r--
2019-05-07 05:34
sidebar.php
3.1
KB
-rw-r--r--
2019-05-07 05:34
sliders.php
4.26
KB
-rw-r--r--
2019-05-07 05:34
sortablelist.php
2.97
KB
-rw-r--r--
2019-05-07 05:34
string.php
9.22
KB
-rw-r--r--
2019-05-07 05:34
tabs.php
3.15
KB
-rw-r--r--
2019-05-07 05:34
tag.php
4.58
KB
-rw-r--r--
2019-05-07 05:34
tel.php
2.14
KB
-rw-r--r--
2019-05-07 05:34
user.php
1.64
KB
-rw-r--r--
2019-05-07 05:34
Save
Rename
<?php /** * @package Joomla.Libraries * @subpackage HTML * * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('JPATH_PLATFORM') or die; /** * Utility class for Tabs elements. * * @since 1.6 * @deprecated 3.7.0 These helpers are dependent on the deprecated MooTools support */ abstract class JHtmlTabs { /** * Creates a panes and creates the JavaScript object for it. * * @param string $group The pane identifier. * @param array $params An array of option. * * @return string * * @since 1.6 * @deprecated 3.7.0 These helpers are dependent on the deprecated MooTools support */ public static function start($group = 'tabs', $params = array()) { static::loadBehavior($group, $params); return '<dl class="tabs" id="' . $group . '"><dt style="display:none;"></dt><dd style="display:none;">'; } /** * Close the current pane * * @return string HTML to close the pane * * @since 1.6 * @deprecated 3.7.0 These helpers are dependent on the deprecated MooTools support */ public static function end() { return '</dd></dl>'; } /** * Begins the display of a new panel. * * @param string $text Text to display. * @param string $id Identifier of the panel. * * @return string HTML to start a new panel * * @since 1.6 * @deprecated 3.7.0 These helpers are dependent on the deprecated MooTools support */ public static function panel($text, $id) { return '</dd><dt class="tabs ' . $id . '"><span><h3><a href="javascript:void(0);">' . $text . '</a></h3></span></dt><dd class="tabs">'; } /** * Load the JavaScript behavior. * * @param string $group The pane identifier. * @param array $params Array of options. * * @return void * * @since 1.6 * @deprecated 3.7.0 These helpers are dependent on the deprecated MooTools support */ protected static function loadBehavior($group, $params = array()) { static $loaded = array(); if (!array_key_exists((string) $group, $loaded)) { // Include MooTools framework JHtml::_('behavior.framework', true); $opt['onActive'] = isset($params['onActive']) ? '\\' . $params['onActive'] : null; $opt['onBackground'] = isset($params['onBackground']) ? '\\' . $params['onBackground'] : null; $opt['display'] = isset($params['startOffset']) ? (int) $params['startOffset'] : null; $opt['titleSelector'] = 'dt.tabs'; $opt['descriptionSelector'] = 'dd.tabs'; // When use storage is set and value is false - By default we allow to use storage $opt['useStorage'] = !(isset($params['useCookie']) && !$params['useCookie']); $options = JHtml::getJSObject($opt); $js = ' window.addEvent(\'domready\', function(){ $$(\'dl#' . $group . '.tabs\').each(function(tabs){ new JTabs(tabs, ' . $options . '); }); });'; $document = JFactory::getDocument(); $document->addScriptDeclaration($js); JHtml::_('script', 'system/tabs.js', array('version' => 'auto', 'relative' => true)); $loaded[(string) $group] = true; } } }