MediaWiki master
LogEntry.php
Go to the documentation of this file.
1<?php
23
35interface LogEntry {
36
42 public function getType();
43
49 public function getSubtype();
50
56 public function getFullType();
57
66 public function getParameters();
67
73
79 public function getTarget();
80
86 public function getTimestamp();
87
93 public function getComment();
94
100 public function getDeleted();
101
106 public function isDeleted( $field );
107}
Represents a title within MediaWiki.
Definition Title.php:78
An individual log entry.
Definition LogEntry.php:35
isDeleted( $field)
getPerformerIdentity()
getParameters()
Get the extra parameters stored for this message.
getTimestamp()
Get the timestamp when the action was executed.
getTarget()
Get the target page of this action.
getSubtype()
The log subtype.
getDeleted()
Get the access restriction.
getComment()
Get the user provided comment.
getFullType()
The full logtype in format maintype/subtype.
getType()
The main log type.
Interface for objects representing user identity.