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