MediaWiki REL1_35
LogEntry.php
Go to the documentation of this file.
1<?php
32interface LogEntry {
33
39 public function getType();
40
46 public function getSubtype();
47
53 public function getFullType();
54
60 public function getParameters();
61
67 public function getPerformer();
68
74 public function getTarget();
75
81 public function getTimestamp();
82
88 public function getComment();
89
95 public function getDeleted();
96
101 public function isDeleted( $field );
102}
Interface for log entries.
Definition LogEntry.php:32
isDeleted( $field)
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.
getPerformer()
Get the user who performed this action.
getType()
The main log type.