MediaWiki REL1_37
|
A subclass of DatabaseLogEntry for objects constructed from entries in the recentchanges table (rather than the logging table). More...
Public Member Functions | |
getAssociatedRevId () | |
getComment () | |
Get the user provided comment. | |
getDeleted () | |
Get the access restriction. | |
getId () | |
Returns the unique database id. | |
getPerformerIdentity () | |
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. | |
Public Member Functions inherited from DatabaseLogEntry | |
getParameters () | |
Get the extra parameters stored for this message. | |
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 Public Member Functions inherited from DatabaseLogEntry | |
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 | |
getRawParameters () | |
Returns whatever is stored in the database field. | |
Protected Member Functions inherited from DatabaseLogEntry | |
__construct ( $row) | |
Additional Inherited Members | |
Protected Attributes inherited from DatabaseLogEntry | |
bool | $legacy |
Whether the parameters for this log entry are stored in new or old format. | |
array | $params |
Parameters for log entry. | |
UserIdentity | $performer |
int | $revId = null |
A rev id associated to the log entry. | |
stdClass | $row |
Database result row. | |
A subclass of DatabaseLogEntry for objects constructed from entries in the recentchanges table (rather than the logging table).
This class should only be used in context of the LogFormatter class.
Definition at line 37 of file RCDatabaseLogEntry.php.
RCDatabaseLogEntry::getAssociatedRevId | ( | ) |
Reimplemented from DatabaseLogEntry.
Definition at line 59 of file RCDatabaseLogEntry.php.
RCDatabaseLogEntry::getComment | ( | ) |
Get the user provided comment.
Reimplemented from DatabaseLogEntry.
Definition at line 103 of file RCDatabaseLogEntry.php.
References DB_REPLICA, and wfGetDB().
RCDatabaseLogEntry::getDeleted | ( | ) |
Get the access restriction.
Reimplemented from DatabaseLogEntry.
Definition at line 109 of file RCDatabaseLogEntry.php.
RCDatabaseLogEntry::getId | ( | ) |
Returns the unique database id.
Reimplemented from DatabaseLogEntry.
Definition at line 51 of file RCDatabaseLogEntry.php.
Referenced by getPerformerIdentity().
RCDatabaseLogEntry::getPerformerIdentity | ( | ) |
Reimplemented from DatabaseLogEntry.
Definition at line 71 of file RCDatabaseLogEntry.php.
References getId().
|
protected |
Returns whatever is stored in the database field.
Reimplemented from DatabaseLogEntry.
Definition at line 55 of file RCDatabaseLogEntry.php.
|
static |
Returns array of information that is needed for querying log entries.
Array contains the following keys: tables, fields, conds, options and join_conds
Since 1.34, log_user and log_user_text have not been present in the database, but they continue to be available in query results as aliases.
Reimplemented from DatabaseLogEntry.
Definition at line 45 of file RCDatabaseLogEntry.php.
RCDatabaseLogEntry::getSubtype | ( | ) |
The log subtype.
Reimplemented from DatabaseLogEntry.
Definition at line 67 of file RCDatabaseLogEntry.php.
RCDatabaseLogEntry::getTarget | ( | ) |
Get the target page of this action.
Reimplemented from DatabaseLogEntry.
Definition at line 93 of file RCDatabaseLogEntry.php.
RCDatabaseLogEntry::getTimestamp | ( | ) |
Get the timestamp when the action was executed.
Reimplemented from DatabaseLogEntry.
Definition at line 99 of file RCDatabaseLogEntry.php.
References wfTimestamp().
RCDatabaseLogEntry::getType | ( | ) |
The main log type.
Reimplemented from DatabaseLogEntry.
Definition at line 63 of file RCDatabaseLogEntry.php.
|
static |
Loads a LogEntry with the given id from database.
int | $id | |
IDatabase | $db |
Reimplemented from DatabaseLogEntry.
Definition at line 39 of file RCDatabaseLogEntry.php.