X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=util%2Ftypo.php;h=0e2177c706654a514a1920c39779e6704f984c2a;hb=d867f97dea3f57dbe1b54d527c7bae7c4e71438a;hp=7c275f3ca32e6629488e407e67bf5324454d05bc;hpb=6e9485605f64394f8e6d830b8a959a5afc85cf2d;p=friendica.git diff --git a/util/typo.php b/util/typo.php index 7c275f3ca3..0e2177c706 100644 --- a/util/typo.php +++ b/util/typo.php @@ -12,48 +12,48 @@ $a = new App(); + if(x($a->config,'php_path')) + $phpath = $a->config['php_path']; + else + $phpath = 'php'; + + echo "Directory: mod\n"; $files = glob('mod/*.php'); foreach($files as $file) { - echo $file . "\n"; - include_once($file); + passthru("$phpath -l $file", $ret); $ret===0 or die(); } echo "Directory: include\n"; $files = glob('include/*.php'); foreach($files as $file) { - echo $file . "\n"; - include_once($file); + passthru("$phpath -l $file", $ret); $ret===0 or die(); + } + + echo "Directory: object\n"; + $files = glob('object/*.php'); + foreach($files as $file) { + passthru("$phpath -l $file", $ret); $ret===0 or die(); } echo "Directory: addon\n"; $dirs = glob('addon/*'); foreach($dirs as $dir) { - $files = glob($dir . '/*.php'); + $addon = basename($dir); + $files = glob($dir . '/' . $addon . '.php'); foreach($files as $file) { - echo $file . "\n"; - if(stristr($file,'jappixmini/proxy.php')) - continue; - include_once($file); + passthru("$phpath -l $file", $ret); $ret===0 or die(); } } - 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"; + passthru("$phpath -l util/strings.php", $ret); $ret===0 or die(); $files = glob('view/*/strings.php'); - foreach($files as $file) { - echo $file . "\n"; - passthru($phpath . ' util/typohelper.php ' . $file); -// include_once($file); + passthru("$phpath -l $file", $ret); $ret===0 or die(); }