| 1 |
<?php |
| 2 |
|
| 3 |
if ( ! defined( 'ABSPATH' ) ) exit; |
| 4 |
|
| 5 |
/** |
| 6 |
***** DO NOT CALL ANY FUNCTIONS DIRECTLY FROM THIS FILE ****** |
| 7 |
* |
| 8 |
* This file will be loaded even before the framework is loaded |
| 9 |
* so the $app is not available here, only declare functions here. |
| 10 |
*/ |
| 11 |
|
| 12 |
|
| 13 |
is_readable(__DIR__ . '/globals_dev.php') && include 'globals_dev.php'; |
| 14 |
|
| 15 |
if (!function_exists('dd')) { |
| 16 |
function dd() |
| 17 |
{ |
| 18 |
foreach (func_get_args() as $arg) { |
| 19 |
echo "<pre>"; |
| 20 |
print_r($arg); |
| 21 |
echo "</pre>"; |
| 22 |
} |
| 23 |
die(); |
| 24 |
} |
| 25 |
} |
| 26 |
|