MediaWiki REL1_31
RCCacheEntry.php
Go to the documentation of this file.
1<?php
22 public $curlink;
23 public $difflink;
24 public $lastlink;
25 public $link;
26 public $timestamp;
28 public $userlink;
30 public $watched;
31 public $mAttribs;
32 public $mExtra;
33
38 static function newFromParent( $rc ) {
39 $rc2 = new RCCacheEntry;
40 $rc2->mAttribs = $rc->mAttribs;
41 $rc2->mExtra = $rc->mExtra;
42
43 return $rc2;
44 }
45}
static newFromParent( $rc)
Utility class for creating new RC entries.