MediaWiki REL1_35
|
Public Member Functions | |
__construct (IContextSource $context, Title $title, array $ids) | |
reloadFromMaster () | |
Reload the list data from the master DB. | |
updateChangeTagsOnAll ( $tagsToAdd, $tagsToRemove, $params, $reason, $user) | |
Add/remove change tags from all the items in the list. | |
Public Member Functions inherited from RevisionListBase | |
__construct (IContextSource $context, Title $title) | |
Construct a revision list for a given title. | |
current () | |
Get the current list item, or false if we are at the end. | |
doQuery ( $db) | |
Do the DB query to iterate through the objects. | |
filterByIds (array $ids) | |
Select items only where the ID is any of the specified values. | |
getType () | |
Get the internal type name of this list. | |
key () | |
length () | |
Get the number of items in the list. | |
newItem ( $row) | |
Create an item object from a DB result row. | |
next () | |
Move the iteration pointer to the next list item, and return it. | |
reset () | |
Start iteration. | |
rewind () | |
valid () | |
Public Member Functions inherited from ContextSource | |
canUseWikiPage () | |
Check whether a WikiPage object can be get with getWikiPage(). | |
exportSession () | |
Export the resolved user IP, HTTP headers, user ID, and session ID. | |
getConfig () | |
getContext () | |
Get the base IContextSource object. | |
getLanguage () | |
getOutput () | |
getRequest () | |
getSkin () | |
getStats () | |
getTiming () | |
getTitle () | |
getUser () | |
Stable to override. | |
getWikiPage () | |
Get the WikiPage object. | |
msg ( $key,... $params) | |
Get a Message object with context set Parameters are the same as wfMessage() | |
setContext (IContextSource $context) | |
Static Public Member Functions | |
static | factory ( $typeName, IContextSource $context, Title $title, array $ids) |
Creates a ChangeTags*List of the requested type. | |
Additional Inherited Members | |
Public Attributes inherited from RevisionListBase | |
Title | $title |
Protected Member Functions inherited from RevisionListBase | |
initCurrent () | |
Initialise the current iteration pointer. | |
Protected Attributes inherited from RevisionListBase | |
RevisionItemBase false | $current |
array | $ids |
IResultWrapper false | $res |
Definition at line 30 of file ChangeTagsList.php.
ChangeTagsList::__construct | ( | IContextSource | $context, |
Title | $title, | ||
array | $ids | ||
) |
Definition at line 31 of file ChangeTagsList.php.
References ContextSource\$context, RevisionListBase\$ids, and RevisionListBase\$title.
|
static |
Creates a ChangeTags*List of the requested type.
string | $typeName | 'revision' or 'logentry' |
IContextSource | $context | |
Title | $title | |
array | $ids |
Exception | If you give an unknown $typeName |
Definition at line 46 of file ChangeTagsList.php.
References ContextSource\$context, RevisionListBase\$ids, and RevisionListBase\$title.
Referenced by SpecialEditTags\getList().
ChangeTagsList::reloadFromMaster | ( | ) |
Reload the list data from the master DB.
Definition at line 66 of file ChangeTagsList.php.
References DB_MASTER, RevisionListBase\doQuery(), and wfGetDB().
|
abstract |
Add/remove change tags from all the items in the list.
array | $tagsToAdd | |
array | $tagsToRemove | |
string | null | $params | |
string | $reason | |
User | $user |
Reimplemented in ChangeTagsLogList, and ChangeTagsRevisionList.