MediaWiki REL1_34
InterwikiLookup.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Interwiki;
4
25use Interwiki;
26
32interface InterwikiLookup {
33
40 public function isValidInterwiki( $prefix );
41
48 public function fetch( $prefix );
49
67 public function getAllPrefixes( $local = null );
68
73 public function invalidateCache( $prefix );
74
75}
Value object for representing interwiki records.
Definition Interwiki.php:27
Service interface for looking up Interwiki records.
invalidateCache( $prefix)
Purge the in-process and persistent object cache for an interwiki prefix.
isValidInterwiki( $prefix)
Check whether an interwiki prefix exists.
getAllPrefixes( $local=null)
Returns information about all interwiki prefixes, in the form of rows of the interwiki table.
fetch( $prefix)
Fetch an Interwiki object.
Copyright (C) 2018 Kunal Mehta legoktm@member.fsf.org