]> git.mxchange.org Git - friendica.git/blob - util/typo.php
Merge https://github.com/friendica/dir into dpull
[friendica.git] / util / typo.php
1 <?php
2         // Tired of chasing typos and finding them after a commit. 
3         // Run this from cmdline in basedir and quickly see if we've 
4         // got any parse errors in our application files.
5
6
7         error_reporting(E_ERROR | E_WARNING | E_PARSE );
8         ini_set('display_errors', '1');
9         ini_set('log_errors','0');
10
11         include 'boot.php';
12         
13         $a = new App();
14
15         echo "Directory: mod\n";
16         $files = glob('mod/*.php');
17         foreach($files as $file) {
18                 echo $file . "\n";
19                 include_once($file);
20         }
21
22         echo "Directory: include\n";
23         $files = glob('include/*.php');
24         foreach($files as $file) {
25                 echo $file . "\n";
26                 include_once($file);
27         }
28
29         echo "Directory: addon\n";
30         $dirs = glob('addon/*');
31
32         foreach($dirs as $dir) {
33                 $files = glob($dir . '/*.php');
34                 foreach($files as $file) {
35                         echo $file . "\n";
36                         if(stristr($file,'jappixmini/proxy.php'))
37                                 continue;
38                         include_once($file);
39                 }
40         }
41
42         if(x($a->config,'php_path'))
43                 $phpath = $a->config['php_path'];
44         else
45                 $phpath = 'php';
46
47         echo "String files\n";
48
49         echo 'util/strings.php' . "\n";
50         include_once('util/strings.php');
51         echo count($a->strings) . ' strings' . "\n";
52
53         $files = glob('view/*/strings.php');
54
55         foreach($files as $file) {
56                 echo $file . "\n";
57         passthru($phpath . ' util/typohelper.php ' . $file);
58 //              include_once($file);
59         }