root/trunk/examples/index.php

Revision 2, 0.6 kB (checked in by argh, 3 years ago)

Initial project checkin.

Line 
1 <?php
2 /**
3  * Main examples dispatcher script that manages the whole
4  * examples navigation and display framework via the
5  * {@link patExampleGen} class.
6  *
7  * $Id: index.php 117 2004-08-26 13:08:37Z argh $
8  *
9  * @package        patForms
10  * @subpackage    Examples
11  * @author        Sebastian 'The Argh' Mordziol <argh@php-tools.net>
12  */
13  
14    /**
15     * The examples prepend file
16     */
17      include_once 'patExampleGen/prepend.php';
18
19      // turn off error handling here, we only need that for the examples themselves
20      $errorHandling = 'off';
21
22      // run the examples framework
23     $exampleGen->process();
24 ?>
25
Note: See TracBrowser for help on using the browser.