MediaWiki REL1_39
PageIdentity.php
Go to the documentation of this file.
1<?php
21namespace MediaWiki\Page;
22
23use RuntimeException;
24use Wikimedia\Assert\PreconditionException;
25
64interface PageIdentity extends PageReference {
65
96 public function getId( $wikiId = self::LOCAL ): int;
97
117 public function canExist(): bool;
118
131 public function exists(): bool;
132
133}
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.