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 /
lusedi /
templates /
pixeldot /
html /
Delete
Unzip
Name
Size
Permission
Date
Action
com_contact
[ DIR ]
drwxr-xr-x
2017-10-08 15:42
com_content
[ DIR ]
drwxr-xr-x
2017-10-08 15:42
mod_breadcrumbs
[ DIR ]
drwxr-xr-x
2017-10-08 15:42
mod_login
[ DIR ]
drwxr-xr-x
2017-10-08 15:42
mod_search
[ DIR ]
drwxr-xr-x
2017-10-08 15:42
editor_content.css
1
KB
-rw-r--r--
2017-10-08 15:42
index.html
44
B
-rw-r--r--
2017-10-08 15:42
modules.php
1.69
KB
-rw-r--r--
2017-10-08 15:42
pagination.php
3.16
KB
-rw-r--r--
2017-10-08 15:42
Save
Rename
<?php /** * @version $Id: modules.php 10381 2008-06-01 03:35:53Z pasamio $ * @package Joomla * @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved. * @license GNU/GPL, see LICENSE.php * Joomla! is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ // no direct access defined('_JEXEC') or die('Restricted access'); /** * This is a file to add template specific chrome to module rendering. To use it you would * set the style attribute for the given module(s) include in your template to use the style * for each given modChrome function. * * eg. To render a module mod_test in the sliders style, you would use the following include: * <jdoc:include type="module" name="test" style="slider" /> * * This gives template designers ultimate control over how modules are rendered. * * NOTICE: All chrome wrapping methods should be named: modChrome_{STYLE} and take the same * two arguments. */ /* * Module chrome for rendering the module in a clean manner */ function modChrome_jaw($module, &$params, &$attribs) { if (!empty ($module->content)) : ?> <div class="module"> <div class="inner"> <?php if ($module->showtitle != 0) : ?> <div class="h3c"><div class="h3r"><div class="h3l"><h3 class="module-title"><?php echo $module->title; ?></h3></div></div></div> <?php endif; ?> <div class="module-body"> <?php echo $module->content; ?> </div> </div> </div> <?php endif; } ?>