MediaWiki  master
PageIdentity.php
Go to the documentation of this file.
1 <?php
21 namespace MediaWiki\Page;
22 
24 use RuntimeException;
25 use Wikimedia\Assert\PreconditionException;
26 
67 interface PageIdentity extends PageReference {
68 
99  public function getId( $wikiId = self::LOCAL ): int;
100 
120  public function canExist(): bool;
121 
134  public function exists(): bool;
135 
136 }
Represents a title within MediaWiki.
Definition: Title.php:76
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.