verifyPackage( 'wiki' ); $gBitSystem->verifyFeature( 'users_watches' ); $gBitSystem->verifyPermission( 'p_admin_users', KernelTools::tra( "Permission denied you cannot browse these page watches" ) ); // Get the page from the request var or default it to HomePage include WIKI_PKG_INCLUDE_PATH.'lookup_page_inc.php'; // make comment count for this page available for templates $gComment = new LibertyComment(); $numComments = $gComment->getNumComments($gContent->mContentId); $gBitSmarty->assign('comments_count', $numComments); //vd($gContent->mPageId);vd($gContent->mInfo); if( !$gContent->isValid() || empty( $gContent->mInfo ) ) { $gBitSystem->fatalError( KernelTools::tra( "Unknown page" )); } $watches = null; if( !empty( $gContent->mPageId ) ) { $event = 'wiki_page_changed'; $watches = $gBitUser->get_event_watches($event, $gContent->mPageId); $gBitSmarty->assign('watches', $watches); $gBitSmarty->assign( 'pageInfo', $gContent->mInfo ); } // Display the template $gBitSystem->display( 'bitpackage:wiki/page_watches.tpl', null, [ 'display_mode' => 'display' ] );