0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
lib
/
wiki-plugins
/
[
Home
]
File: wikiplugin_lastmod.php
<?php // $Id: /cvsroot/tikiwiki/tiki/lib/wiki-plugins/wikiplugin_lastmod.php,v 1.4.2.1 2007-12-07 12:55:20 pkdille Exp $ // Wiki plugin to display last modification information. // rlpowell 31 Dec 2006 function wikiplugin_lastmod_help() { return tra("The last_mod plugin replaces itself with last modification time of the named wiki page, or the current page if no name given").":<br />~np~{LASTMOD(page=>pagename)/}~/np~"; } function wikiplugin_lastmod_info() { return array( 'name' => tra('Last Modification'), 'documentation' => 'PluginLastMod', 'description' => tra("The last_mod plugin replaces itself with last modification time of the named wiki page, or the current page if no name given"), 'prefs' => array('feature_wiki', 'wikiplugin_lastmod'), 'params' => array( 'page' => array( 'required' => false, 'name' => tra('Page'), 'description' => tra('Page name to display information of. Default value is current page.'), ), ), ); } function wikiplugin_lastmod($data, $params) { global $tikilib; extract ($params,EXTR_SKIP); if (!isset($page)) { # See if we're being called from a wiki page; stolen from wikiplugin_attach if( strstr( $_REQUEST["SCRIPT_NAME"], "tiki-index.php" ) || strstr( $_REQUEST["SCRIPT_NAME"], "tiki-editpage.php" ) || strstr( $_REQUEST["SCRIPT_NAME"], 'tiki-pagehistory.php') ) { $page = $_REQUEST["page"]; } } $lastmod = $tikilib->date_format( "%a, %e %b %Y %H:%M:%S %Z", $tikilib->page_exists_modtime($page) ); return $lastmod; } ?>