MediaWiki master
RCCacheEntry.php
Go to the documentation of this file.
1<?php
23 public $curlink;
25 public $difflink;
27 public $lastlink;
29 public $link;
31 public $timestamp;
35 public $userlink;
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.