wiki.techinc.nl/includes/SpecialRecentchangeslinked.php

80 lines
2.4 KiB
PHP
Raw Normal View History

<?php
2003-11-17 03:00:18 +00:00
include_once( "SpecialRecentchanges.php" );
2003-04-14 23:10:40 +00:00
function wfSpecialRecentchangeslinked( $par = NULL )
2003-04-14 23:10:40 +00:00
{
global $wgUser, $wgOut, $wgLang, $wgTitle;
global $days, $target, $hideminor; # From query string
2003-04-14 23:10:40 +00:00
$fname = "wfSpecialRecentchangeslinked";
$wgOut->setPagetitle( wfMsg( "recentchanges" ) );
$sk = $wgUser->getSkin();
if( $par ) {
$target = $par;
}
2003-04-14 23:10:40 +00:00
if ( "" == $target ) {
$wgOut->errorpage( "notargettitle", "notargettext" );
return;
}
$nt = Title::newFromURL( $target );
2003-11-15 13:41:26 +00:00
$wgOut->setSubtitle( wfMsg( "rclsub", $nt->getPrefixedText() ) );
2003-04-14 23:10:40 +00:00
if ( ! $days ) {
$days = $wgUser->getOption( "rcdays" );
if ( ! $days ) { $days = 7; }
}
$days = (int)$days;
list( $limit, $offset ) = wfCheckLimits( 100, "rclimit" );
$cutoff = wfUnix2Timestamp( time() - ( $days * 86400 ) );
2003-04-14 23:10:40 +00:00
$hideminor = ($hideminor ? 1 : 0);
2003-04-14 23:10:40 +00:00
if ( $hideminor ) {
$mlink = $sk->makeKnownLink( $wgLang->specialPage( "Recentchangeslinked" ),
WfMsg( "show" ), "target=" . wfEscapeHTML( $nt->getPrefixedURL() ) .
"&days={$days}&limit={$limit}&hideminor=0" );
} else {
$mlink = $sk->makeKnownLink( $wgLang->specialPage( "Recentchangeslinked" ),
WfMsg( "hide" ), "target=" . wfEscapeHTML( $nt->getPrefixedURL() ) .
"&days={$days}&limit={$limit}&hideminor=1" );
}
if ( $hideminor ) {
$cmq = "AND cur_minor_edit=0";
} else { $cmq = ""; }
$sql = "SELECT cur_id,cur_namespace,cur_title,cur_user,cur_comment," .
"cur_user_text,cur_timestamp,cur_minor_edit,cur_is_new FROM links, cur " .
"WHERE cur_timestamp > '{$cutoff}' {$cmq} AND l_to=cur_id AND l_from='" .
wfStrencode( $nt->getPrefixedDBkey() ) . "' GROUP BY cur_id " .
"ORDER BY inverse_timestamp LIMIT {$limit}";
2003-09-20 02:21:40 +00:00
$res = wfQuery( $sql, DB_READ, $fname );
2003-04-14 23:10:40 +00:00
$note = wfMsg( "rcnote", $limit, $days );
2003-04-14 23:10:40 +00:00
$wgOut->addHTML( "<hr>\n{$note}\n<br>" );
$note = rcDayLimitlinks( $days, $limit, "Recentchangeslinked",
"target=" . $nt->getPrefixedURL() . "&hideminor={$hideminor}",
false, $mlink );
2003-04-14 23:10:40 +00:00
$wgOut->addHTML( "{$note}\n" );
$s = $sk->beginRecentChangesList();
$count = wfNumRows( $res );
while ( $limit ) {
if ( 0 == $count ) { break; }
$obj = wfFetchObject( $res );
--$count;
$rc = RecentChange::newFromCurRow( $obj );
$s .= $sk->recentChangesLine( $rc );
2003-04-14 23:10:40 +00:00
--$limit;
}
$s .= $sk->endRecentChangesList();
wfFreeResult( $res );
$wgOut->addHTML( $s );
}
?>