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