X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=util%2Ftypo.php;h=a8055c84184317ba3d51f564938f959b38b93211;hb=ad48ab29286cdc609e75b8d4412cd05d17204e82;hp=ac837efe5028d5daf28c71ef39a012a2e7481dfe;hpb=5f2f64406407839d0a9d906e0ad165067d90d130;p=friendica.git diff --git a/util/typo.php b/util/typo.php index ac837efe50..a8055c8418 100644 --- a/util/typo.php +++ b/util/typo.php @@ -25,14 +25,41 @@ echo $file . "\n"; include_once($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) { - $files = glob($dir . '/*.php'); + $addon = basename($dir); + $files = glob($dir . '/' . $addon . '.php'); foreach($files as $file) { echo $file . "\n"; include_once($file); } - } \ No newline at end of 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); + }