MediaWiki
REL1_22
|
Item class for a logging table row. More...
Public Member Functions | |
canView () | |
Returns true if the current user can view the item. | |
canViewContent () | |
Returns true if the current user can view the item text/file. | |
getAuthorIdField () | |
Get the DB field name storing user ids. | |
getAuthorNameField () | |
Get the DB field name storing user names. | |
getBits () | |
Get the current deletion bitfield value. | |
getHTML () | |
Get the HTML of the list item. | |
getIdField () | |
Get the DB field name associated with the ID list. | |
getTimestampField () | |
Get the DB field name storing timestamps. | |
setBits ($bits) | |
Set the visibility of the item. |
Item class for a logging table row.
Definition at line 884 of file RevisionDelete.php.
Returns true if the current user can view the item.
Reimplemented from RevisionItemBase.
Definition at line 901 of file RevisionDelete.php.
References Revision\DELETED_RESTRICTED, list, and LogEventsList\userCan().
Returns true if the current user can view the item text/file.
Reimplemented from RevisionItemBase.
Definition at line 905 of file RevisionDelete.php.
Get the DB field name storing user ids.
Override this function.
Reimplemented from RevisionItemBase.
Definition at line 893 of file RevisionDelete.php.
Get the DB field name storing user names.
Override this function.
Reimplemented from RevisionItemBase.
Definition at line 897 of file RevisionDelete.php.
Get the current deletion bitfield value.
Reimplemented from RevDel_Item.
Definition at line 909 of file RevisionDelete.php.
Get the HTML of the list item.
Should be include "<li></li>" tags. This is used to show the list in HTML form, by the special page.
Reimplemented from RevisionItemBase.
Definition at line 937 of file RevisionDelete.php.
References $comment, $title, array(), Linker\commentBlock(), LogPage\DELETED_COMMENT, LogFormatter\FOR_THIS_USER, SpecialPage\getTitleFor(), LogEventsList\isDeleted(), Linker\link(), list, Title\makeTitle(), and LogFormatter\newFromRow().
Get the DB field name associated with the ID list.
Override this function.
Reimplemented from RevisionItemBase.
Definition at line 885 of file RevisionDelete.php.
Get the DB field name storing timestamps.
Override this function.
Reimplemented from RevisionItemBase.
Definition at line 889 of file RevisionDelete.php.
RevDel_LogItem::setBits | ( | $ | newBits | ) |
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.
Reimplemented from RevDel_Item.
Definition at line 913 of file RevisionDelete.php.