3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
22 namespace MediaWiki\Linker
;
27 interface LinkTarget
{
30 * Get the namespace index.
33 * @return int Namespace index
35 public function getNamespace();
38 * Convenience function to test if it is in the namespace
44 public function inNamespace( $ns );
47 * Get the link fragment (i.e. the bit after the #) in text form.
50 * @return string link fragment
52 public function getFragment();
55 * Whether the link target has a fragment
60 public function hasFragment();
63 * Get the main part with underscores.
66 * @return string Main part of the link, with underscores (for use in href attributes)
68 public function getDBkey();
71 * Returns the link in text form, without namespace prefix or fragment.
72 * This is computed from the DB key by replacing any underscores with spaces.
77 public function getText();
80 * Creates a new LinkTarget for a different fragment of the same page.
81 * It is expected that the same type of object will be returned, but the
82 * only requirement is that it is a LinkTarget.
85 * @param string $fragment The fragment name, or "" for the entire page.
89 public function createFragmentTarget( $fragment );
92 * Whether this LinkTarget has an interwiki component
97 public function isExternal();
100 * The interwiki component of this LinkTarget
105 public function getInterwiki();