MediaWiki master
RCCacheEntry.php
Go to the documentation of this file.
1<?php
26 public $curlink;
28 public $difflink;
30 public $lastlink;
32 public $link;
34 public $timestamp;
38 public $userlink;
42 public $watched;
45
50 public static function newFromParent( $rc ) {
51 $rc2 = new RCCacheEntry;
52 $rc2->mAttribs = $rc->mAttribs;
53 $rc2->mExtra = $rc->mExtra;
54
55 return $rc2;
56 }
57}
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 and reading rows in the recentchanges table.