MediaWiki
REL1_19
|
Implements Special:Ancientpages. More...
Public Member Functions | |
__construct ($name= 'Ancientpages') | |
formatResult ($skin, $result) | |
Formats the results of the query for display. | |
getQueryInfo () | |
Subclasses return an SQL query here, formatted as an array with the following keys: tables => Table(s) for passing to Database::select() fields => Field(s) for passing to Database::select(), may be * conds => WHERE conditions options => options join_conds => JOIN conditions. | |
isExpensive () | |
Is this query expensive (for some definition of expensive)? Then we don't let it run in miser mode. | |
isSyndicated () | |
Sometime we dont want to build rss / atom feeds. | |
sortDescending () | |
Override to sort by increasing values. | |
usesTimestamps () | |
Does this query return timestamps rather than integers in its 'value' field? If true, this class will convert 'value' to a UNIX timestamp for caching. |
Implements Special:Ancientpages.
Definition at line 29 of file SpecialAncientpages.php.
AncientPagesPage::__construct | ( | $ | name = 'Ancientpages' | ) |
Definition at line 31 of file SpecialAncientpages.php.
AncientPagesPage::formatResult | ( | $ | skin, |
$ | result | ||
) |
Formats the results of the query for display.
The skin is the current skin; you can use it for making links. The result is a single row of result data. You should be able to grab SQL results off of it. If the function returns false, the line output will be skipped.
$skin | Skin |
$result | object Result row |
$skin | Skin object |
$result | Object: database row |
Reimplemented from QueryPage.
Definition at line 61 of file SpecialAncientpages.php.
References $result, $title, $wgContLang, SpecialPage\getLanguage(), Linker\linkKnown(), and Title\makeTitle().
Subclasses return an SQL query here, formatted as an array with the following keys: tables => Table(s) for passing to Database::select() fields => Field(s) for passing to Database::select(), may be * conds => WHERE conditions options => options join_conds => JOIN conditions.
Note that the query itself should return the following three columns: 'namespace', 'title', and 'value'. 'value' is used for sorting.
These may be stored in the querycache table for expensive queries, and that cached data will be returned sometimes, so the presence of extra fields can't be relied upon. The cached 'value' column will be an integer; non-numeric values are useful only for sorting the initial query (except if they're timestamps, see usesTimestamps()).
Don't include an ORDER or LIMIT clause, they will be added.
If this function is not overridden or returns something other than an array, getSQL() will be used instead. This is for backwards compatibility only and is strongly deprecated.
Reimplemented from QueryPage.
Definition at line 41 of file SpecialAncientpages.php.
References MWNamespace\getContentNamespaces().
Is this query expensive (for some definition of expensive)? Then we don't let it run in miser mode.
$wgDisableQueryPages causes all query pages to be declared expensive. Some query pages are always expensive.
Reimplemented from QueryPage.
Definition at line 35 of file SpecialAncientpages.php.
Sometime we dont want to build rss / atom feeds.
Reimplemented from QueryPage.
Definition at line 39 of file SpecialAncientpages.php.
Override to sort by increasing values.
Reimplemented from QueryPage.
Definition at line 57 of file SpecialAncientpages.php.
Does this query return timestamps rather than integers in its 'value' field? If true, this class will convert 'value' to a UNIX timestamp for caching.
NOTE: formatRow() may get timestamps in TS_MW (mysql), TS_DB (pgsql) or TS_UNIX (querycache) format, so be sure to always run them through wfTimestamp()
Reimplemented from QueryPage.
Definition at line 53 of file SpecialAncientpages.php.