< < < Click here to go back to the main site

List of available files:

templates/
    images/
    style/
        > gallery.css
    > contact.txt
    > footer.txt
    > header.txt
basecode/
    > Gallery.php
    > gallerybuilder.php
    > GalleryItem.php
    > GalleryNavigationData.php
    > GallerySection.php
    > includer.php
    > Photograph.php
    > Video.php
pictures/
> gpl.txt
> index.php
> opensource.php

Showing source of: ./basecode/includer.php


<?php

    
/***************************************************************************
     * jpbGallery 1.0.0 Copyright (c) 2007 Jean-Philippe Barbeau
     * Contact: jp $at> jpbarbeau $dot> com
     ***************************************************************************
     * This file is part of the jpbGallery project.
     *
     * jpbGallery is free software; you can redistribute it and/or modify
     * it under the terms of the GNU General Public License as published by
     * the Free Software Foundation; either version 3 of the License, or
     * (at your option) any later version.
     * 
     * jpbGallery is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU General Public License for more details.
     * 
     * You should have received a copy of the GNU General Public License
     * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    -***************************************************************************/

    
require_once 'Gallery.php';
    require_once 
'GallerySection.php';
    require_once 
'GalleryItem.php';
    require_once 
'Photograph.php';
    require_once 
'Video.php';
    require_once 
'GalleryNavigationData.php';

?>

< < < Click here to go back to the main site