Source for file mod_last_modif_pages.php
Documentation is available at mod_last_modif_pages.php
* $Header: /cvsroot/bitweaver/_bit_wiki/modules/mod_last_modif_pages.php,v 1.4 2007/01/17 20:16:24 spiderr Exp $
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
* Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
* All Rights Reserved. See copyright.txt for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
* $Id: mod_last_modif_pages.php,v 1.4 2007/01/17 20:16:24 spiderr Exp $
global $gQueryUserId, $module_rows, $module_params, $wikilib;
if( $gBitUser->hasPermission( 'p_wiki_view_page' ) ) {
require_once( WIKI_PKG_PATH. 'BitPage.php' );
$ranking = $wikilib->getList(0, $module_rows, 'last_modified_desc', NULL, $gQueryUserId );
$gBitSmarty->assign('modLastModif', $ranking["data"]);
$gBitSmarty->assign('maxlen', isset ($module_params["maxlen"]) ? $module_params["maxlen"] : 0);
|