X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=util%2Ftypo.php;h=a8055c84184317ba3d51f564938f959b38b93211;hb=0180ac563eebea23df3ffb95c35f5a9da164de52;hp=d0ecf0c8fb08f6055dea721f05b20a5666682e96;hpb=53dff2204bf2cbe46b6cbdb7174fa0cf1a7162b1;p=friendica.git diff --git a/util/typo.php b/util/typo.php index d0ecf0c8fb..a8055c8418 100644 --- a/util/typo.php +++ b/util/typo.php @@ -3,24 +3,63 @@ // Run this from cmdline in basedir and quickly see if we've // got any parse errors in our application files. - include 'boot.php'; - error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE); + error_reporting(E_ERROR | E_WARNING | E_PARSE ); ini_set('display_errors', '1'); ini_set('log_errors','0'); - + include 'boot.php'; + $a = new App(); + echo "Directory: mod\n"; $files = glob('mod/*.php'); - foreach($files as $file) + foreach($files as $file) { + echo $file . "\n"; include_once($file); + } - + echo "Directory: include\n"; $files = glob('include/*.php'); - foreach($files as $file) + foreach($files as $file) { + echo $file . "\n"; include_once($file); - - $files = glob('addon/*/*.php'); - foreach($files as $file) + } + + echo "Directory: object\n"; + $files = glob('object/*.php'); + foreach($files as $file) { + echo $file . "\n"; include_once($file); + } + + echo "Directory: addon\n"; + $dirs = glob('addon/*'); + + foreach($dirs as $dir) { + $addon = basename($dir); + $files = glob($dir . '/' . $addon . '.php'); + foreach($files as $file) { + echo $file . "\n"; + include_once($file); + } + } + + if(x($a->config,'php_path')) + $phpath = $a->config['php_path']; + else + $phpath = 'php'; + + echo "String files\n"; + + echo 'util/strings.php' . "\n"; + include_once('util/strings.php'); + echo count($a->strings) . ' strings' . "\n"; + + $files = glob('view/*/strings.php'); + + foreach($files as $file) { + echo $file . "\n"; + passthru($phpath . ' util/typohelper.php ' . $file); +// include_once($file); + }