]> git.mxchange.org Git - friendica.git/blobdiff - util/typo.php
Only show foreign items if the profile of the user isn't hidden. Show the user's...
[friendica.git] / util / typo.php
index ac61ef6d35396ce2b192d74675e25d4388acdb74..a8055c84184317ba3d51f564938f959b38b93211 100644 (file)
                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);
                }
        }
 
+       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";
-               include_once($file);
+       passthru($phpath . ' util/typohelper.php ' . $file);
+//             include_once($file);
        }