MediaWiki  REL1_24
RCCacheEntry.php
Go to the documentation of this file.
00001 <?php
00021 class RCCacheEntry extends RecentChange {
00022     public $curlink;
00023     public $difflink;
00024     public $lastlink;
00025     public $link;
00026     public $timestamp;
00027     public $unpatrolled;
00028     public $userlink;
00029     public $usertalklink;
00030     public $watched;
00031 
00036     static function newFromParent( $rc ) {
00037         $rc2 = new RCCacheEntry;
00038         $rc2->mAttribs = $rc->mAttribs;
00039         $rc2->mExtra = $rc->mExtra;
00040 
00041         return $rc2;
00042     }
00043 }