MediaWiki  1.34.0
LogEntry.php
Go to the documentation of this file.
1 <?php
31 interface LogEntry {
32 
38  public function getType();
39 
45  public function getSubtype();
46 
52  public function getFullType();
53 
59  public function getParameters();
60 
66  public function getPerformer();
67 
73  public function getTarget();
74 
80  public function getTimestamp();
81 
87  public function getComment();
88 
94  public function getDeleted();
95 
100  public function isDeleted( $field );
101 }
LogEntry\getTimestamp
getTimestamp()
Get the timestamp when the action was executed.
LogEntry\getParameters
getParameters()
Get the extra parameters stored for this message.
LogEntry\isDeleted
isDeleted( $field)
LogEntry\getTarget
getTarget()
Get the target page of this action.
LogEntry\getComment
getComment()
Get the user provided comment.
LogEntry\getFullType
getFullType()
The full logtype in format maintype/subtype.
LogEntry\getType
getType()
The main log type.
LogEntry
Interface for log entries.
Definition: LogEntry.php:31
LogEntry\getDeleted
getDeleted()
Get the access restriction.
LogEntry\getSubtype
getSubtype()
The log subtype.
LogEntry\getPerformer
getPerformer()
Get the user who performed this action.