Source for file view.php
Documentation is available at view.php 
require_once( '../kernel/setup_inc.php' );  
$gBitSystem->verifyPackage( 'fisheye' );  
require_once( FISHEYE_PKG_PATH. 'FisheyeGallery.php');  
require_once( FISHEYE_PKG_PATH. 'FisheyeImage.php');  
global $gBitSystem, $fisheyeErrors, $fisheyeWarnings, $fisheyeSuccess;  
include_once( FISHEYE_PKG_PATH. 'gallery_lookup_inc.php' );  
if( $gContent &&  $gContent->isValid() ) {  
$gHideModules =  $gBitSystem->isFeatureActive( 'fisheye_gallery_hide_modules' );  
if ( !$gContent->isValid() ) {  
    // No gallery was indicated so we will redirect to the browse galleries page  
    bit_redirect( FISHEYE_PKG_URL. "list_galleries.php", '404' );  
    $commentsParentId =  $gContent->mContentId;  
    $comments_vars =  Array('fisheyegallery');  
    $comments_prefix_var= 'fisheyegallery:';  
    $comments_object_var= 'fisheyegallery';  
    $comments_return_url =  $_SERVER['SCRIPT_NAME']. "?gallery_id=". $gContent->mGalleryId;  
    include_once( LIBERTY_PKG_PATH. 'comments_inc.php' );  
if (!empty($_REQUEST['download'])){              
    // Checked against global users group assignment so that feature can be restricted on a group level.   
    // If content was checked, user would always have permission to do this.  
    $gContent->verifyUserPermission('p_fisheye_download_gallery_arc');  
    require_once( FISHEYE_PKG_PATH. 'display_fisheye_gallery_inc.php' );  
 
 
        
       |