X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=util%2Ftypo.php;h=0e2177c706654a514a1920c39779e6704f984c2a;hb=cbd2fc1572028a4b7e6753d4abebb46995328145;hp=ac61ef6d35396ce2b192d74675e25d4388acdb74;hpb=0de88eb6b0e5ceab470240a54414317884a49101;p=friendica.git diff --git a/util/typo.php b/util/typo.php index ac61ef6d35..0e2177c706 100644 --- a/util/typo.php +++ b/util/typo.php @@ -12,37 +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"; - include_once($file); + passthru("$phpath -l $file", $ret); $ret===0 or die(); } } + echo "String files\n"; echo 'util/strings.php' . "\n"; - include_once('util/strings.php'); + passthru("$phpath -l util/strings.php", $ret); $ret===0 or die(); + $files = glob('view/*/strings.php'); foreach($files as $file) { - echo $file . "\n"; - include_once($file); + passthru("$phpath -l $file", $ret); $ret===0 or die(); }