MediaWiki REL1_39
|
Abstract base class for deletable items. More...
Public Member Functions | |
getApiData (ApiResult $result) | |
Get the return information about the revision for the API. | |
getBits () | |
Get the current deletion bitfield value. | |
isHideCurrentOp ( $newBits) | |
Returns true if the item is "current", and the operation to set the given bits can't be executed for that reason STUB. | |
lock () | |
Lock the item against changes outside of the DB. | |
setBits ( $newBits) | |
Set the visibility of the item. | |
unlock () | |
Unlock the item against changes outside of the DB. | |
Public Member Functions inherited from RevisionItemBase | |
__construct (RevisionListBase $list, $row) | |
canView () | |
Returns true if the current user can view the item. | |
canViewContent () | |
Returns true if the current user can view the item text/file. | |
formatDate () | |
Get the date, formatted in user's language. | |
formatTime () | |
Get the time, formatted in user's language. | |
getAuthorActor () | |
Get the author actor ID. | |
getAuthorActorField () | |
Get the DB field name storing actor ids. | |
getAuthorId () | |
Get the author user ID. | |
getAuthorIdField () | |
Get the DB field name storing user ids. | |
getAuthorName () | |
Get the author user name. | |
getAuthorNameField () | |
Get the DB field name storing user names. | |
getHTML () | |
Get the HTML of the list item. | |
getId () | |
Get the ID, as it would appear in the ids URL parameter. | |
getIdField () | |
Get the DB field name associated with the ID list. | |
getTimestamp () | |
Get the timestamp in MW 14-char form. | |
getTimestampField () | |
Get the DB field name storing timestamps. | |
Additional Inherited Members | |
Protected Member Functions inherited from RevisionItemBase | |
getLinkRenderer () | |
Returns an instance of LinkRenderer. | |
Protected Attributes inherited from RevisionItemBase | |
RevisionListBase | $list |
The parent. | |
stdClass | $row |
The database result row. | |
Abstract base class for deletable items.
Definition at line 25 of file RevDelItem.php.
|
abstract |
Get the return information about the revision for the API.
ApiResult | $result |
Reimplemented in RevDelArchivedFileItem, RevDelFileItem, RevDelLogItem, and RevDelRevisionItem.
|
abstract |
Get the current deletion bitfield value.
Reimplemented in RevDelFileItem, RevDelLogItem, and RevDelRevisionItem.
RevDelItem::isHideCurrentOp | ( | $newBits | ) |
Returns true if the item is "current", and the operation to set the given bits can't be executed for that reason STUB.
int | $newBits |
Reimplemented in RevDelRevisionItem.
Definition at line 33 of file RevDelItem.php.
RevDelItem::lock | ( | ) |
Lock the item against changes outside of the DB.
Reimplemented in RevDelArchivedFileItem, and RevDelFileItem.
Definition at line 70 of file RevDelItem.php.
|
abstract |
Set the visibility of the item.
This should do any necessary DB queries.
The DB update query should have a condition which forces it to only update if the value in the DB matches the value fetched earlier with the SELECT. If the update fails because it did not match, the function should return false. This prevents concurrency problems.
int | $newBits |
Reimplemented in RevDelArchivedFileItem, RevDelArchivedRevisionItem, RevDelArchiveItem, RevDelFileItem, RevDelLogItem, and RevDelRevisionItem.
RevDelItem::unlock | ( | ) |
Unlock the item against changes outside of the DB.
Reimplemented in RevDelArchivedFileItem, and RevDelFileItem.
Definition at line 79 of file RevDelItem.php.