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