MediaWiki  master
RCCacheEntry.php
Go to the documentation of this file.
1 <?php
21 class RCCacheEntry extends RecentChange {
23  public $curlink;
25  public $difflink;
27  public $lastlink;
29  public $link;
31  public $timestamp;
33  public $unpatrolled;
35  public $userlink;
37  public $usertalklink;
39  public $watched;
42 
47  public static function newFromParent( $rc ) {
48  $rc2 = new RCCacheEntry;
49  $rc2->mAttribs = $rc->mAttribs;
50  $rc2->mExtra = $rc->mExtra;
51 
52  return $rc2;
53  }
54 }
string null $userlink
string null $curlink
string null $usertalklink
string null $difflink
string null $lastlink
string null $link
bool null $watched
string null $timestamp
bool null $unpatrolled
string null $watchlistExpiry
static newFromParent( $rc)
Utility class for creating new RC entries.