Source for file print_multi_pages.php
Documentation is available at print_multi_pages.php
* $Header: /cvsroot/bitweaver/_bit_wiki/print_multi_pages.php,v 1.7 2006/04/11 13:10:33 squareing 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: print_multi_pages.php,v 1.7 2006/04/11 13:10:33 squareing Exp $
require_once( '../bit_setup_inc.php' );
require_once( WIKI_PKG_PATH. 'BitPage.php' );
$gBitSystem->verifyFeature( 'wiki_multiprint' );
if (!isset ($_REQUEST["printpages"])) {
$gBitSmarty->assign('msg', tra("No pages indicated"));
$gBitSystem->display( 'error.tpl' );
if (isset ($_REQUEST["print"])) {
foreach( $printpages as $contentId ) {
$page = new BitPage( NULL, $contentId );
if( $page->load() && $page->hasUserPermission( 'p_wiki_view_page', TRUE )) {
$page_info = $page->mInfo;
$page_info["parsed"] = $page->parseData( $page_info );
$gBitSmarty->assign_by_ref('pages', $pages);
$gBitSmarty->display("bitpackage:wiki/print_multi_pages.tpl");
|