MediaWiki REL1_39
LogEntry.php
Go to the documentation of this file.
1<?php
27
34interface LogEntry {
35
41 public function getType();
42
48 public function getSubtype();
49
55 public function getFullType();
56
62 public function getParameters();
63
69
75 public function getTarget();
76
82 public function getTimestamp();
83
89 public function getComment();
90
96 public function getDeleted();
97
102 public function isDeleted( $field );
103}
Interface for log entries.
Definition LogEntry.php:34
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.