MediaWiki master
LogEntry.php
Go to the documentation of this file.
1<?php
21namespace MediaWiki\Logging;
22
25
37interface LogEntry {
38
44 public function getType();
45
51 public function getSubtype();
52
58 public function getFullType();
59
68 public function getParameters();
69
75
81 public function getTarget();
82
88 public function getTimestamp();
89
95 public function getComment();
96
102 public function getDeleted();
103
108 public function isDeleted( $field );
109}
110
112class_alias( LogEntry::class, 'LogEntry' );
Represents a title within MediaWiki.
Definition Title.php:78
An individual log entry.
Definition LogEntry.php:37
getType()
The main log type.
getFullType()
The full logtype in format maintype/subtype.
getTimestamp()
Get the timestamp when the action was executed.
getParameters()
Get the extra parameters stored for this message.
getDeleted()
Get the access restriction.
getSubtype()
The log subtype.
getComment()
Get the user provided comment.
getTarget()
Get the target page of this action.
Interface for objects representing user identity.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU Ge...