MediaWiki master
PageIdentity.php
Go to the documentation of this file.
1<?php
7namespace MediaWiki\Page;
8
10use RuntimeException;
11use Wikimedia\Assert\PreconditionException;
12
53interface PageIdentity extends PageReference {
54
84 public function getId( $wikiId = self::LOCAL ): int;
85
105 public function canExist(): bool;
106
119 public function exists(): bool;
120
121}
Represents a title within MediaWiki.
Definition Title.php:69
Interface for objects (potentially) representing an editable wiki page.
getId( $wikiId=self::LOCAL)
Returns the page ID.
canExist()
Checks whether this PageIdentity represents a "proper" page, meaning that it could exist as an editab...
exists()
Checks if the page currently exists.
Interface for objects (potentially) representing a page that can be viewable and linked to on a wiki.