DataObjects/Core_locking.php
[Pman.Core] / RunGenerator.php
index 196db0b..cb67aea 100644 (file)
@@ -15,7 +15,7 @@ class Pman_Core_RunGenerator extends Pman
    
     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,11 +23,11 @@ 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' => 999,
+            'max' => -1,
             
         )
         
@@ -54,7 +54,7 @@ class Pman_Core_RunGenerator extends Pman
      
     function get($args, $opts)
     {
-        
+        //print_r($opts);exit;
         
         HTML_FlexyFramework::run('Core/UpdateDatabase');
         
@@ -64,16 +64,13 @@ class Pman_Core_RunGenerator extends Pman
         ini_set('pcre.backtrack_limit', 2000000);
         ini_set('pcre.recursion_limit', 2000000);
         $this->init();
-         
-        $lastarg = $this->cli  ? array_pop($_SERVER['argv']) : '';
-        if (preg_match('/RunGenerator/', $lastarg)) {
-            $lastarg  = '';
-        }
+        
         $x = new Pman_Core_Generator();
        // $x->page = clone($this);
        
         
-        $modules = is_string($opts['modules']) ? array($opts['modules']) : $opts['modules'];
+        $modules = $opts['module'];
+        // overwrite can be multiple
         $overwrite = is_string($opts['overwrite']) ? array($opts['overwrite']) : $opts['overwrite'];
 
         $x->start($this->cli, $modules, $overwrite);