|
Revision 1202, 0.7 kB
(checked in by laurentj, 2 days ago)
|
updated entrypoint of testapp with the new default content of entry points
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
require (dirname(__FILE__).'/../lib/jelix/init.php'); |
|---|
| 13 |
define ('JELIX_APP_PATH', dirname (__FILE__).'/'); |
|---|
| 14 |
|
|---|
| 15 |
define ('JELIX_APP_TEMP_PATH', realpath(JELIX_APP_PATH.'../temp/testapp/').'/'); |
|---|
| 16 |
define ('JELIX_APP_VAR_PATH', JELIX_APP_PATH.'var/'); |
|---|
| 17 |
define ('JELIX_APP_LOG_PATH', JELIX_APP_PATH.'var/log/'); |
|---|
| 18 |
define ('JELIX_APP_CONFIG_PATH', JELIX_APP_PATH.'var/config/'); |
|---|
| 19 |
define ('JELIX_APP_WWW_PATH', JELIX_APP_PATH.'www/'); |
|---|
| 20 |
|
|---|
| 21 |
|
|---|