MediaWiki master
RCCacheEntry.php
Go to the documentation of this file.
1<?php
22
28 public $curlink;
30 public $difflink;
32 public $lastlink;
34 public $link;
36 public $timestamp;
40 public $userlink;
44 public $watched;
47
52 public static function newFromParent( $rc ) {
53 $rc2 = new RCCacheEntry;
54 $rc2->mAttribs = $rc->mAttribs;
55 $rc2->mExtra = $rc->mExtra;
56
57 return $rc2;
58 }
59}
60
62class_alias( RCCacheEntry::class, 'RCCacheEntry' );
Utility class for creating and reading rows in the recentchanges table.