verifyPackage( 'wiki' ); $gBitSystem->verifyFeature( 'wiki_history' ); // Get the page from the request var or default it to HomePage include WIKI_PKG_INCLUDE_PATH.'lookup_page_inc.php'; //vd($gContent->mPageId);vd($gContent->mInfo); if( !$gContent->isValid() || empty( $gContent->mInfo ) ) { $gBitSystem->fatalError( KernelTools::tra( "Unknown page" )); } $gContent->verifyViewPermission(); $gContent->verifyUserPermission( 'p_wiki_view_history' ); $gBitSmarty->assign( 'pageInfo', $gContent->mInfo ); if (!empty( $_REQUEST['rollback_preview'] )) { $gBitSmarty->assign( 'rollback_preview', $_REQUEST['rollback_preview']); } // set up stuff to get history working $smartyContentRef = 'pageInfo'; $rollbackPerm = 'p_wiki_rollback'; include_once LIBERTY_PKG_INCLUDE_PATH.'content_history_inc.php'; // pagination stuff $gBitSmarty->assign( 'page', $page = !empty( $_REQUEST['page'] ) ? $_REQUEST['page'] : 1 ); if( !empty( $_REQUEST['list_page'] )) { $gBitSmarty->assign( 'page', $page = !empty( $_REQUEST['list_page'] ) ? $_REQUEST['list_page'] : 1 ); } $offset = ( $page - 1 ) * $gBitSystem->getConfig( 'max_records' ); $history = $gContent->getHistory( null, null, $offset, $gBitSystem->getConfig( 'max_records' ) ); $gBitSmarty->assign( 'data', $history['data'] ); $gBitSmarty->assign( 'listInfo', $history['listInfo'] ); // Display the template $gBitSmarty->assign( 'gContent', $gContent ); $gBitSystem->display( 'bitpackage:wiki/page_history.tpl' , null, [ 'display_mode' => 'display' ]);