php7 fixes
[Pman.Builder] / Cli.php
1 <?php
2 /*
3
4 Help file for cli in this directory.
5 */
6
7
8 class Pman_Builder_Cli
9 {
10     
11     function getAuth()
12     {
13         return false;
14     }
15     function help($cli)
16     {
17         echo "
18
19     $cli Builder/RunGenerator
20
21     Creates ALL database tables
22     - does not change files, just shows you want would happen
23         
24         
25     $cli Builder/RunGenerator/COMPONENT
26
27     Runs the generator for a COMPONENT (NOTE - will update that COMPONENT sql)
28     - does not change files, just shows you want would happen
29
30     
31     $cli Builder/RunGenerator/COMPONENT pman.ini,COMPONENT.readers.js,...
32
33     Runs the generator for a project (NOTE - runs all the SQL updates)
34     - Changes the files.
35
36 ================================    
37
38     $cli Builder/JsCompiler  build PROJECT
39     $cli Builder/JsCompiler  install PROJECT
40     
41     Runs the javascript compiler - merging all the JS files so the load faster.
42     Note: cfg option Pman_Builder['jstoolkit'] must be set to location of jstoolkit code 
43     SVN Support: if .svn files are found, it will try and commit the changes
44 ";
45
46
47     }
48     
49     
50 }