MediaWiki master
EditConstraint.php
Go to the documentation of this file.
1<?php
8
11
18abstract class EditConstraint implements IEditObject {
19
24 abstract public function checkConstraint(): EditPageStatus;
25
30 public function getName(): string {
31 $fullClassName = explode( '\\', $this::class );
32 return end( $fullClassName );
33 }
34
35}
Abstract class for all constraints that can prevent edits.
Status returned by edit constraints and other page editing checks.
Serves as a common repository of constants for EditPage edit status results.