2010-09-28 19:10:44 -04:00
|
|
|
<?php
|
2010-09-29 01:12:27 -04:00
|
|
|
// Tired of chasing typos and finding them after a commit.
|
|
|
|
// Run this from cmdline in basedir and quickly see if we've
|
|
|
|
// got any parse errors in our application files.
|
|
|
|
|
2010-09-28 19:10:44 -04:00
|
|
|
include 'boot.php';
|
|
|
|
|
2010-10-30 16:25:37 -04:00
|
|
|
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
|
|
|
|
ini_set('display_errors', '1');
|
|
|
|
ini_set('log_errors','0');
|
|
|
|
|
|
|
|
|
2010-09-28 19:10:44 -04:00
|
|
|
$a = new App();
|
|
|
|
|
|
|
|
$files = glob('mod/*.php');
|
|
|
|
foreach($files as $file)
|
|
|
|
include_once($file);
|
|
|
|
|
|
|
|
|
|
|
|
$files = glob('include/*.php');
|
|
|
|
foreach($files as $file)
|
|
|
|
include_once($file);
|
2010-12-23 22:31:53 -05:00
|
|
|
|
2011-02-10 21:01:38 -05:00
|
|
|
$files = glob('addon/*/*.php');
|
2010-12-23 22:31:53 -05:00
|
|
|
foreach($files as $file)
|
|
|
|
include_once($file);
|