Revision [2417]

This is an old revision of LastEdit made by DarTar on 2004-11-24 14:42:20.

 

Last Edit Action


In order to avoid clicking on RecentChanges to know who edited a page and why,
here's a (stupid) action proposal which prints short lastedit infos in the page body:
Last edited by DarTar:
Stupid action proposal
Wed, 24 Nov 2004 14:42 UTC

Usage {{lastedit}}

Optional parameter: show
-1 show user only
0 show user and notes
1 show user, notes, date
2 show user, notes, date and quickdiff link

actions/lastedit.php
<?php

// Prints short infos on last edit
// Uses parameter: show
// -1 show user only
//  0 show user and notes
//  1 show user, notes, date
//  2 show user, notes, date and quickdiff link

// set default
if (!$show) $show="0";

$page = $this->LoadSingle("SELECT * FROM ".$this->config["table_prefix"]."pages WHERE tag='".$this->GetPageTag()."' AND latest = 'Y'");
$pagetag = $page["tag"];
$user = ($this->LoadUser($page["user"]))? $this->Link($page["user"]) : "anonymous";
if (!($show == -1)) {
    $note = ($page["note"])? ": <span class=\"notes\">".$page["note"]."</span>" : "";
}

if ($show == 1 || $show == 2) {
    list($day, $time) = explode(" ", $page["time"]);
    $dateformatted = date("D, d M Y", strtotime($day));
    $timeformatted = date("H:i T", strtotime($page["time"]));
}
if ($show == 2) {
    $oldpage = $this->LoadSingle("SELECT * FROM ".$this->config["table_prefix"]."pages WHERE tag='".$this->GetPageTag()."' AND latest = 'N' ORDER BY time desc LIMIT 1");
    $newid = $page["id"];
    $oldid = $oldpage["id"];
    $difflink = " [<a title=\"Show differences from last version\" href=\"".$this->Href("diff", $pagetag, "a=".$page["id"]."&b=".$oldpage["id"]."&fastdiff=1")."\">diff</a>]";
}
$output = "<div class=\"lastedit\" style=\"border:dotted 1px; padding:3pt; margin:8pt; color:#888; font-size:8pt; width:30%;\">Last edited by
"
.$user.$note."<br /> ".$dateformatted." ".$timeformatted.$difflink."</div>";
print $output;
?>
There are 14 comments on this page. [Show comments]
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki