PHP7 fix
[Pman.Core] / RunGenerator.php
index 433a473..3a4516a 100644 (file)
 require_once 'Pman.php';
 class Pman_Core_RunGenerator extends Pman
 {     
-    static $cli_desc = "Generate DataObjects (runs updatedatabase first)";
-   
+    static $cli_desc = "Generate DataObjects (runs updatedatabase first)  
+                     does not change files, just shows you want would happen";
+        
+        
     static $cli_opts = array(
         'module' => array(
-            'desc' => 'Module',
+            'desc' => 'Module (if new tables are found, they will be put in the modules database directory',
             'short' => 'm',
             'default' => '',
             'min' => 1,
@@ -23,12 +25,20 @@ class Pman_Core_RunGenerator extends Pman
             
         ),
         'overwrite' => array(
-            'desc' => 'Files to Overwrite',
+            'desc' => 'Files to Overwrite (use _all_ to create everything)',
             'default' => '',
             'short' => 'o',
             'min' => 1,
             'max' => -1,
             
+        ),
+        'noupdate' => array(
+            'desc' => 'Do not update the database using sql',
+            'default' => '',
+            'short' => 'n',
+            'min' => 1,
+            'max' => -1,
+            
         )
         
     );
@@ -52,11 +62,13 @@ class Pman_Core_RunGenerator extends Pman
         return true;
     }
      
-    function get($args, $opts)
+    function get($args, $opts=array())
     {
-        print_r($opts);exit;
+        //print_r($opts);exit;
+        if (empty($opts['noupdate'])) {
+            HTML_FlexyFramework::run('Core/UpdateDatabase');
+        }
         
-        HTML_FlexyFramework::run('Core/UpdateDatabase');