MediaWiki REL1_33
|
A value class to process existing log entries. More...
Public Member Functions | |
getAssociatedRevId () | |
getComment () | |
Get the user provided comment. | |
getDeleted () | |
Get the access restriction. | |
getId () | |
Returns the unique database id. | |
getParameters () | |
Get the extra parameters stored for this message. | |
getPerformer () | |
Get the user for performed this action. | |
getSubtype () | |
The log subtype. | |
getTarget () | |
Get the target page of this action. | |
getTimestamp () | |
Get the timestamp when the action was executed. | |
getType () | |
The main log type. | |
isLegacy () | |
Whether the parameters for this log are stored in new or old format. | |
Public Member Functions inherited from LogEntryBase | |
getFullType () | |
The full logtype in format maintype/subtype. | |
isDeleted ( $field) | |
Static Public Member Functions | |
static | getSelectQueryData () |
Returns array of information that is needed for querying log entries. | |
static | newFromId ( $id, IDatabase $db) |
Loads a LogEntry with the given id from database. | |
static | newFromRow ( $row) |
Constructs new LogEntry from database result row. | |
Static Public Member Functions inherited from LogEntryBase | |
static | extractParams ( $blob) |
Extract a parameter array from a blob. | |
static | makeParamBlob ( $params) |
Create a blob from a parameter array. | |
Protected Member Functions | |
__construct ( $row) | |
getRawParameters () | |
Returns whatever is stored in the database field. | |
Protected Attributes | |
bool | $legacy |
Whether the parameters for this log entry are stored in new or old format. | |
array | $params |
Parameters for log entry. | |
User | $performer |
int | $revId = null |
A rev id associated to the log entry. | |
stdClass | $row |
Database result row. | |
A value class to process existing log entries.
In other words, this class caches a log entry from the database and provides an immutable object-oriented representation of it.
Definition at line 168 of file LogEntry.php.
|
protected |
Definition at line 260 of file LogEntry.php.
References $row.
DatabaseLogEntry::getAssociatedRevId | ( | ) |
Reimplemented in RCDatabaseLogEntry.
Definition at line 319 of file LogEntry.php.
References $revId, and getParameters().
DatabaseLogEntry::getComment | ( | ) |
Get the user provided comment.
Implements LogEntry.
Reimplemented in RCDatabaseLogEntry.
Definition at line 360 of file LogEntry.php.
DatabaseLogEntry::getDeleted | ( | ) |
Get the access restriction.
Implements LogEntry.
Reimplemented in RCDatabaseLogEntry.
Definition at line 364 of file LogEntry.php.
DatabaseLogEntry::getId | ( | ) |
Returns the unique database id.
Reimplemented in RCDatabaseLogEntry.
Definition at line 269 of file LogEntry.php.
DatabaseLogEntry::getParameters | ( | ) |
Get the extra parameters stored for this message.
Implements LogEntry.
Definition at line 296 of file LogEntry.php.
References $blob, $params, LogEntryBase\extractParams(), LogPage\extractParams(), and getRawParameters().
Referenced by getAssociatedRevId(), and isLegacy().
DatabaseLogEntry::getPerformer | ( | ) |
Get the user for performed this action.
Implements LogEntry.
Reimplemented in RCDatabaseLogEntry.
Definition at line 325 of file LogEntry.php.
References $performer, User\newFromActorId(), User\newFromId(), User\newFromName(), and User\newFromRow().
|
protected |
Returns whatever is stored in the database field.
Reimplemented in RCDatabaseLogEntry.
Definition at line 278 of file LogEntry.php.
Referenced by getParameters().
|
static |
Returns array of information that is needed for querying log entries.
Array contains the following keys: tables, fields, conds, options and join_conds
Definition at line 177 of file LogEntry.php.
References $tables.
Referenced by ChangeTagsLogList\doQuery(), LogPager\getQueryInfo(), and newFromId().
DatabaseLogEntry::getSubtype | ( | ) |
The log subtype.
Implements LogEntry.
Reimplemented in RCDatabaseLogEntry.
Definition at line 292 of file LogEntry.php.
DatabaseLogEntry::getTarget | ( | ) |
Get the target page of this action.
Implements LogEntry.
Reimplemented in RCDatabaseLogEntry.
Definition at line 348 of file LogEntry.php.
References $title.
DatabaseLogEntry::getTimestamp | ( | ) |
Get the timestamp when the action was executed.
Implements LogEntry.
Reimplemented in RCDatabaseLogEntry.
Definition at line 356 of file LogEntry.php.
References wfTimestamp().
DatabaseLogEntry::getType | ( | ) |
The main log type.
Implements LogEntry.
Reimplemented in RCDatabaseLogEntry.
Definition at line 288 of file LogEntry.php.
DatabaseLogEntry::isLegacy | ( | ) |
Whether the parameters for this log are stored in new or old format.
Reimplemented from LogEntryBase.
Definition at line 282 of file LogEntry.php.
References $legacy, and getParameters().
|
static |
Loads a LogEntry with the given id from database.
int | $id | |
IDatabase | $db |
Definition at line 228 of file LogEntry.php.
References $row, getSelectQueryData(), newFromRow(), and Wikimedia\Rdbms\IDatabase\selectRow().
Referenced by DatabaseLogEntryTest\testNewFromId().
|
static |
Constructs new LogEntry from database result row.
Supports rows from both logging and recentchanges table.
stdClass | array | $row |
Definition at line 212 of file LogEntry.php.
Referenced by ApiQueryLogEvents\extractRowInfo(), RevDelLogItem\getApiData(), DeleteAutoPatrolLogs\getRowsOld(), LogEventsList\logLine(), newFromId(), and LogFormatter\newFromRow().
|
protected |
Whether the parameters for this log entry are stored in new or old format.
Definition at line 258 of file LogEntry.php.
Referenced by isLegacy().
|
protected |
Parameters for log entry.
Definition at line 252 of file LogEntry.php.
Referenced by getParameters().
|
protected |
Definition at line 249 of file LogEntry.php.
Referenced by getPerformer(), and RCDatabaseLogEntry\getPerformer().
|
protected |
A rev id associated to the log entry.
Definition at line 255 of file LogEntry.php.
Referenced by getAssociatedRevId().
|
protected |
Database result row.
Definition at line 246 of file LogEntry.php.
Referenced by __construct(), newFromId(), and newFromRow().