2010-09-28 19:10:44 -04:00
|
|
|
<?php
|
2016-09-30 10:46:56 -04:00
|
|
|
// Tired of chasing typos and finding them after a commit.
|
|
|
|
// Run this from cmdline in basedir and quickly see if we've
|
2010-09-29 01:12:27 -04:00
|
|
|
// got any parse errors in our application files.
|
|
|
|
|
2010-09-28 19:10:44 -04:00
|
|
|
|
2011-02-21 23:19:33 -05:00
|
|
|
error_reporting(E_ERROR | E_WARNING | E_PARSE );
|
2010-10-30 16:25:37 -04:00
|
|
|
ini_set('display_errors', '1');
|
|
|
|
ini_set('log_errors','0');
|
|
|
|
|
2011-02-21 23:19:33 -05:00
|
|
|
include 'boot.php';
|
2016-09-30 10:46:56 -04:00
|
|
|
|
2010-09-28 19:10:44 -04:00
|
|
|
$a = new App();
|
|
|
|
|
2015-01-05 05:59:12 -05:00
|
|
|
if(x($a->config,'php_path'))
|
|
|
|
$phpath = $a->config['php_path'];
|
|
|
|
else
|
|
|
|
$phpath = 'php';
|
|
|
|
|
|
|
|
|
2011-02-21 23:19:33 -05:00
|
|
|
echo "Directory: mod\n";
|
2010-09-28 19:10:44 -04:00
|
|
|
$files = glob('mod/*.php');
|
2011-02-21 23:19:33 -05:00
|
|
|
foreach($files as $file) {
|
2015-01-05 05:59:12 -05:00
|
|
|
passthru("$phpath -l $file", $ret); $ret===0 or die();
|
2011-02-21 23:19:33 -05:00
|
|
|
}
|
2010-09-28 19:10:44 -04:00
|
|
|
|
2011-02-21 23:19:33 -05:00
|
|
|
echo "Directory: include\n";
|
2010-09-28 19:10:44 -04:00
|
|
|
$files = glob('include/*.php');
|
2011-02-21 23:19:33 -05:00
|
|
|
foreach($files as $file) {
|
2015-01-05 05:59:12 -05:00
|
|
|
passthru("$phpath -l $file", $ret); $ret===0 or die();
|
2011-02-21 23:19:33 -05:00
|
|
|
}
|
2016-09-30 10:46:56 -04:00
|
|
|
|
2012-09-20 03:32:42 -04:00
|
|
|
echo "Directory: object\n";
|
|
|
|
$files = glob('object/*.php');
|
|
|
|
foreach($files as $file) {
|
2015-01-05 05:59:12 -05:00
|
|
|
passthru("$phpath -l $file", $ret); $ret===0 or die();
|
2012-09-20 03:32:42 -04:00
|
|
|
}
|
2011-02-21 23:19:33 -05:00
|
|
|
|
|
|
|
echo "Directory: addon\n";
|
|
|
|
$dirs = glob('addon/*');
|
|
|
|
|
|
|
|
foreach($dirs as $dir) {
|
2012-06-05 22:28:04 -04:00
|
|
|
$addon = basename($dir);
|
|
|
|
$files = glob($dir . '/' . $addon . '.php');
|
2011-02-21 23:19:33 -05:00
|
|
|
foreach($files as $file) {
|
2015-01-05 05:59:12 -05:00
|
|
|
passthru("$phpath -l $file", $ret); $ret===0 or die();
|
2011-02-21 23:19:33 -05:00
|
|
|
}
|
2011-03-08 21:53:52 -05:00
|
|
|
}
|
|
|
|
|
2011-03-28 20:24:11 -04:00
|
|
|
|
2011-03-08 21:53:52 -05:00
|
|
|
echo "String files\n";
|
|
|
|
|
|
|
|
echo 'util/strings.php' . "\n";
|
2015-01-05 05:59:12 -05:00
|
|
|
passthru("$phpath -l util/strings.php", $ret); $ret===0 or die();
|
2011-03-21 03:21:35 -04:00
|
|
|
|
2016-09-30 10:46:56 -04:00
|
|
|
$files = glob('view/lang/*/strings.php');
|
2011-03-08 21:53:52 -05:00
|
|
|
foreach($files as $file) {
|
2015-01-05 05:59:12 -05:00
|
|
|
passthru("$phpath -l $file", $ret); $ret===0 or die();
|
2011-03-08 21:53:52 -05:00
|
|
|
}
|