2010-09-28 23:10:44 +00:00
|
|
|
<?php
|
2010-09-29 05:12:27 +00: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 23:10:44 +00:00
|
|
|
|
2011-02-22 04:19:33 +00:00
|
|
|
error_reporting(E_ERROR | E_WARNING | E_PARSE );
|
2010-10-30 20:25:37 +00:00
|
|
|
ini_set('display_errors', '1');
|
|
|
|
ini_set('log_errors','0');
|
|
|
|
|
2011-02-22 04:19:33 +00:00
|
|
|
include 'boot.php';
|
|
|
|
|
2010-09-28 23:10:44 +00:00
|
|
|
$a = new App();
|
|
|
|
|
2011-02-22 04:19:33 +00:00
|
|
|
echo "Directory: mod\n";
|
2010-09-28 23:10:44 +00:00
|
|
|
$files = glob('mod/*.php');
|
2011-02-22 04:19:33 +00:00
|
|
|
foreach($files as $file) {
|
|
|
|
echo $file . "\n";
|
2010-09-28 23:10:44 +00:00
|
|
|
include_once($file);
|
2011-02-22 04:19:33 +00:00
|
|
|
}
|
2010-09-28 23:10:44 +00:00
|
|
|
|
2011-02-22 04:19:33 +00:00
|
|
|
echo "Directory: include\n";
|
2010-09-28 23:10:44 +00:00
|
|
|
$files = glob('include/*.php');
|
2011-02-22 04:19:33 +00:00
|
|
|
foreach($files as $file) {
|
|
|
|
echo $file . "\n";
|
2010-12-24 03:31:53 +00:00
|
|
|
include_once($file);
|
2011-02-22 04:19:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
echo "Directory: addon\n";
|
|
|
|
$dirs = glob('addon/*');
|
|
|
|
|
|
|
|
foreach($dirs as $dir) {
|
|
|
|
$files = glob($dir . '/*.php');
|
|
|
|
foreach($files as $file) {
|
|
|
|
echo $file . "\n";
|
|
|
|
include_once($file);
|
|
|
|
}
|
|
|
|
}
|