| 16 | | error_reporting( E_ALL ); |
|---|
| 17 | | |
|---|
| 18 | | /** |
|---|
| 19 | | * requires patErrorManager |
|---|
| 20 | | * make sure that it is in your include path |
|---|
| 21 | | */ |
|---|
| 22 | | require_once( 'pat/patErrorManager.php' ); |
|---|
| 23 | | |
|---|
| 24 | | /** |
|---|
| 25 | | * main class |
|---|
| 26 | | */ |
|---|
| 27 | | require_once '../patTemplate.php'; |
|---|
| 28 | | |
|---|
| | 16 | /** |
|---|
| | 17 | * Main examples prepend file, needed *only* for the examples framework! |
|---|
| | 18 | */ |
|---|
| | 19 | include_once 'patExampleGen/prepend.php'; |
|---|
| | 20 | |
|---|
| | 21 | // EXAMPLE START ------------------------------------------------------ |
|---|
| | 22 | |
|---|
| | 23 | /** |
|---|
| | 24 | * patErrorManager class |
|---|
| | 25 | */ |
|---|
| | 26 | require_once $neededFiles['patErrorManager']; |
|---|
| | 27 | |
|---|
| | 28 | /** |
|---|
| | 29 | * patTemplate |
|---|
| | 30 | */ |
|---|
| | 31 | require_once $neededFiles['patTemplate']; |
|---|
| | 32 | |
|---|
| | 33 | |
|---|