]> git.mxchange.org Git - friendica.git/blob - util/typo.php
add remove_user hook (it looks like dreamhost changed all my file permissions, this...
[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                         include_once($file);
37                 }
38         }
39
40         if(x($a->config,'php_path'))
41                 $phpath = $a->config['php_path'];
42         else
43                 $phpath = 'php';
44
45         echo "String files\n";
46
47         echo 'util/strings.php' . "\n";
48         include_once('util/strings.php');
49         echo count($a->strings) . ' strings' . "\n";
50
51         $files = glob('view/*/strings.php');
52
53         foreach($files as $file) {
54                 echo $file . "\n";
55         passthru($phpath . ' util/typohelper.php ' . $file);
56 //              include_once($file);
57         }