MediaWiki master
RCCacheEntry.php
Go to the documentation of this file.
1<?php
8
14 public $curlink;
16 public $difflink;
18 public $lastlink;
20 public $link;
22 public $timestamp;
26 public $userlink;
30 public $watched;
33
38 public static function newFromParent( $rc ) {
39 $rc2 = new RCCacheEntry;
40 $rc2->mAttribs = $rc->mAttribs;
41 $rc2->mExtra = $rc->mExtra;
42 $rc2->setHighlights( $rc->getHighlights() );
43
44 return $rc2;
45 }
46}
47
49class_alias( RCCacheEntry::class, 'RCCacheEntry' );
Utility class for creating and reading rows in the recentchanges table.