<?php
/**
* Part of Showkase web site management package
*
* @package Showkase
* @author Jack Hardie {@link http://www.jhardie.com}
* @copyright Copyright (c) 2012, SimpleViewer Inc.
*/
defined('SK_ACCESS')||die('<h1>403: Forbidden</h1>');
require_once 'classes'.DIRECTORY_SEPARATOR.'page.php';
/**
* About page
*
* @package Showkase
*/
class GalleryIndexPage extends Page
{
/**
* Is this page type a gallery
*
* @return boolean
*/
public function isGallery()
{
return false;
}
}