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 /** * Simple: A lightweight skin with a simple white-background sidebar and no * top bar. * * @file * @ingroup Skins */ if( !defined( 'MEDIAWIKI' ) ) die( -1 ); /** */ require_once( dirname(__FILE__) . '/MonoBook.php' ); /** * Inherit main code from SkinTemplate, set the CSS and template filter. * @ingroup Skins */ class SkinSimple extends SkinTemplate { var $skinname = 'simple', $stylename = 'simple', $template = 'MonoBookTemplate', $useHeadElement = true; function setupSkinUserCss( OutputPage $out ) { parent::setupSkinUserCss( $out ); $out->addModuleStyles( 'skins.simple' ); /* Add some userprefs specific CSS styling */ global $wgUser; $rules = array(); $underline = ""; if ( $wgUser->getOption( 'underline' ) < 2 ) { $underline = "text-decoration: " . $wgUser->getOption( 'underline' ) ? 'underline !important' : 'none' . ";"; } /* Also inherits from resourceloader */ if( !$wgUser->getOption( 'highlightbroken' ) ) { $rules[] = "a.new, a.stub { color: inherit; text-decoration: inherit;}"; $rules[] = "a.new:after { color: #CC2200; $underline;}"; $rules[] = "a.stub:after { $underline; }"; } $style = implode( "\n", $rules ); $out->addInlineStyle( $style, 'flip' ); } }