summaryrefslogtreecommitdiff
path: root/www/wiki/includes/interwiki/NullInterwikiLookup.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/includes/interwiki/NullInterwikiLookup.php')
-rw-r--r--www/wiki/includes/interwiki/NullInterwikiLookup.php57
1 files changed, 57 insertions, 0 deletions
diff --git a/www/wiki/includes/interwiki/NullInterwikiLookup.php b/www/wiki/includes/interwiki/NullInterwikiLookup.php
new file mode 100644
index 00000000..09fa1ecd
--- /dev/null
+++ b/www/wiki/includes/interwiki/NullInterwikiLookup.php
@@ -0,0 +1,57 @@
+<?php
+/**
+ * Copyright (C) 2018 Kunal Mehta <legoktm@member.fsf.org>
+ *
+ * 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.
+ *
+ */
+
+namespace MediaWiki\Interwiki;
+
+/**
+ * An interwiki lookup that has no data, intended
+ * for use in the installer.
+ *
+ * @since 1.31
+ */
+class NullInterwikiLookup implements InterwikiLookup {
+
+ /**
+ * @inheritDoc
+ */
+ public function isValidInterwiki( $prefix ) {
+ return false;
+ }
+
+ /**
+ * @inheritDoc
+ */
+ public function fetch( $prefix ) {
+ return false;
+ }
+
+ /**
+ * @inheritDoc
+ */
+ public function getAllPrefixes( $local = null ) {
+ return [];
+ }
+
+ /**
+ * @inheritDoc
+ */
+ public function invalidateCache( $prefix ) {
+ }
+}