]> git.mxchange.org Git - friendica.git/blobdiff - util/typo.php
new file: view/theme/smoothly/bottom.tpl
[friendica.git] / util / typo.php
index ac837efe5028d5daf28c71ef39a012a2e7481dfe..bb2fc67c9f687ccfc21a1c5b55e3e08c8f507829 100644 (file)
        $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);
+       }