MediaWiki
REL1_21
|
Representation of a pair of user and title for watchlist entries. More...
Public Member Functions | |
addWatch () | |
Given a title and user (assumes the object is setup), add the watch to the database. | |
getNotificationTimestamp () | |
Get the notification timestamp of this entry. | |
isWatched () | |
Is mTitle being watched by mUser? | |
removeWatch () | |
Same as addWatch, only the opposite. | |
resetNotificationTimestamp ($force= '') | |
Reset the notification timestamp of this entry. | |
Static Public Member Functions | |
static | duplicateEntries ($ot, $nt) |
Check if the given title already is watched by the user, and if so add watches on a new title. | |
static | fromUserTitle ($user, $title) |
Create a WatchedItem object with the given user and title. | |
Public Attributes | |
$mTitle | |
$mUser | |
$timestamp | |
$watched | |
Protected Member Functions | |
getTitle () | |
Title being watched. | |
getTitleDBkey () | |
Helper to retrieve the title DBkey. | |
getTitleNs () | |
Helper to retrieve the title namespace. | |
getUserId () | |
Helper to retrieve the user id. | |
Private Member Functions | |
dbCond () | |
Return an array of conditions to select or update the appropriate database row. | |
load () | |
Load the object from the database. | |
Static Private Member Functions | |
static | doDuplicateEntries ($ot, $nt) |
Handle duplicate entries. | |
Private Attributes | |
$loaded = false |
Representation of a pair of user and title for watchlist entries.
Definition at line 29 of file WatchedItem.php.
Given a title and user (assumes the object is setup), add the watch to the database.
Definition at line 158 of file WatchedItem.php.
References array(), MWNamespace\getSubject(), MWNamespace\getTalk(), getTitleDBkey(), getTitleNs(), getUserId(), wfGetDB(), wfProfileIn(), and wfProfileOut().
WatchedItem::dbCond | ( | ) | [private] |
Return an array of conditions to select or update the appropriate database row.
Definition at line 75 of file WatchedItem.php.
References array(), getTitleDBkey(), getTitleNs(), and getUserId().
Referenced by load(), and resetNotificationTimestamp().
static WatchedItem::doDuplicateEntries | ( | $ | ot, |
$ | nt | ||
) | [static, private] |
Handle duplicate entries.
Backend for duplicateEntries().
Definition at line 250 of file WatchedItem.php.
References $res, $s, array(), as, empty, and wfGetDB().
Referenced by duplicateEntries().
static WatchedItem::duplicateEntries | ( | $ | ot, |
$ | nt | ||
) | [static] |
Check if the given title already is watched by the user, and if so add watches on a new title.
To be used for page renames and such.
$ot | Title: page title to duplicate entries from, if present |
$nt | Title: page title to add watches on |
Definition at line 237 of file WatchedItem.php.
References doDuplicateEntries().
Referenced by Title\moveTo().
static WatchedItem::fromUserTitle | ( | $ | user, |
$ | title | ||
) | [static] |
Create a WatchedItem object with the given user and title.
$user | User: the user to use for (un)watching |
$title | Title: the title we're going to (un)watch |
Definition at line 39 of file WatchedItem.php.
Get the notification timestamp of this entry.
Definition at line 122 of file WatchedItem.php.
References load().
WatchedItem::getTitle | ( | ) | [protected] |
Title being watched.
Definition at line 51 of file WatchedItem.php.
Referenced by getTitleDBkey(), and getTitleNs().
WatchedItem::getTitleDBkey | ( | ) | [protected] |
Helper to retrieve the title DBkey.
Definition at line 61 of file WatchedItem.php.
References getTitle().
Referenced by addWatch(), dbCond(), and removeWatch().
WatchedItem::getTitleNs | ( | ) | [protected] |
Helper to retrieve the title namespace.
Definition at line 56 of file WatchedItem.php.
References getTitle().
Referenced by addWatch(), dbCond(), and removeWatch().
WatchedItem::getUserId | ( | ) | [protected] |
Helper to retrieve the user id.
Definition at line 65 of file WatchedItem.php.
Referenced by addWatch(), dbCond(), and removeWatch().
Is mTitle being watched by mUser?
Definition at line 111 of file WatchedItem.php.
References load().
WatchedItem::load | ( | ) | [private] |
Load the object from the database.
Definition at line 86 of file WatchedItem.php.
References $dbr, dbCond(), and wfGetDB().
Referenced by getNotificationTimestamp(), isWatched(), and resetNotificationTimestamp().
Same as addWatch, only the opposite.
Definition at line 192 of file WatchedItem.php.
References $success, array(), MWNamespace\getSubject(), MWNamespace\getTalk(), getTitleDBkey(), getTitleNs(), getUserId(), wfGetDB(), wfProfileIn(), and wfProfileOut().
WatchedItem::resetNotificationTimestamp | ( | $ | force = '' | ) |
WatchedItem::$loaded = false [private] |
Definition at line 31 of file WatchedItem.php.
WatchedItem::$mTitle |
Definition at line 30 of file WatchedItem.php.
WatchedItem::$mUser |
Definition at line 30 of file WatchedItem.php.
WatchedItem::$timestamp |
Definition at line 31 of file WatchedItem.php.
WatchedItem::$watched |
Definition at line 31 of file WatchedItem.php.