]> git.mxchange.org Git - friendica.git/blob - util/typo.php
resolve file inclusion conflicts w/ multiple plugins, improve the typo checker
[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         }