X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=RunGenerator.php;h=3a4516a69ed668e66d3fbc22d846fd9ec8a6b5e7;hp=01fe2e05cdf8a75a8487567e14e3c7742d20d458;hb=443623f47935eb52acd65a3ff0d84eab1fd5a98b;hpb=f4edf0e4835feb67a6e3b9e7e605c91aba4bf8a9 diff --git a/RunGenerator.php b/RunGenerator.php index 01fe2e05..3a4516a6 100644 --- a/RunGenerator.php +++ b/RunGenerator.php @@ -11,23 +11,33 @@ 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' => 0, + 'min' => 1, 'max' => 1, ), 'overwrite' => array( - 'desc' => 'Files to Overwrite', + 'desc' => 'Files to Overwrite (use _all_ to create everything)', 'default' => '', 'short' => 'o', - 'min' => 0, - 'max' => 999, + '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; + if (empty($opts['noupdate'])) { + HTML_FlexyFramework::run('Core/UpdateDatabase'); + } - print_r($opts);exit; - HTML_FlexyFramework::run('Core/UpdateDatabase'); @@ -64,18 +76,16 @@ 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 = $opts;exit; - - $x->start($this->cli, $args, $lastarg); + $modules = $opts['module']; + // overwrite can be multiple + $overwrite = is_string($opts['overwrite']) ? array($opts['overwrite']) : $opts['overwrite']; + + $x->start($this->cli, $modules, $overwrite); // technically it would be good to trash the cached ini files here.. // however we can not really do that, as the ownships are off..