Process/Php7.php
[Pman.Core] / Process / Php7.php
1 <?php
2
3 /**
4  *
5  * PHP7 produces all sorts of pointless warnings... this attempts to just include all the files,
6  * so that you can view them..??
7  *
8  * would be nice to write the code to fix them.
9  *
10  */
11 require_once 'Pman.php';
12
13 class Pman_Core_Process_Php7 extends Pman 
14 {
15
16     static $cli_desc = "Tests for PHP compatibilty, by including files...";
17     static $cli_opts = array();
18
19     function getAuth() 
20     {
21         if (empty($this->bootLoader->cli)) {
22             die("CLI only");
23         }
24     }
25
26     function get($base, $opts = array()) 
27     {
28         $dir = array($this->rootDir);
29         $cls = array();
30         
31 //        $this->scan($this->rootDir, 'Pman');
32         $this->scan($dir, $cls);
33         
34         
35     }
36     
37     function scan($dir) 
38     {
39         foreach (scandir($dir) as $d) {
40             
41             if (!strlen($d) || $d[0] == '.') {
42                 continue;
43             }
44             
45             
46             
47         }
48         
49     }
50
51 //    function scan($p, $pr, $path = false) 
52 //    {
53 //        $full_path = array($p, $pr);
54 //        $class_path = array();
55 //        if ($path !== false) {
56 //            $full_path = array_merge($full_path, $path);
57 //            $class_path = array_merge($class_path, $path);
58 //        }
59 //        //print_r("CHKDIR:    ". implode('/', $full_path)."\n");
60 //
61 //        foreach (scandir(implode('/', $full_path)) as $d) {
62 //
63 //            if (!strlen($d) || $d[0] == '.') {
64 //                continue;
65 //            }
66 //            $chk = $full_path;
67 //            $chk[] = $d;
68 //
69 //            $clp = $class_path;
70 //
71 //
72 //
73 //            //print_r("CHK:          " . implode('/', $chk)."\n");
74 //            // is it a file.. and .PHP...
75 //            if (!is_dir(implode('/', $chk))) {
76 //                if (!preg_match('/\.php$/', $d)) {
77 //                    continue;
78 //                }
79 //                $clp[] = preg_replace('/\.php$/', '', $d);
80 //
81 //                //print_r("CLP:          " . implode('/', $clp)."\n");
82 //                require_once "Pman/" . implode('/', $clp) . '.php';
83 //                continue;
84 //            }
85 //            $clp[] = $d;
86 //            // otherwise recurse...
87 //            //print_r("RECURSE:        " . implode('/', $clp)."\n");
88 //
89 //            $this->scan($p, $pr, $clp);
90 //        }
91 //    }
92
93     function output() 
94     {
95         die("DONE");
96     }
97
98 }