diff options
author | wei <> | 2007-01-17 08:01:40 +0000 |
---|---|---|
committer | wei <> | 2007-01-17 08:01:40 +0000 |
commit | 3dc598bc7c2604e24b9e0be1189d9d78b43737ea (patch) | |
tree | fa3bc532607b6c70af3737fec80ebfed62debc5a /framework/3rdParty/PhpShell/PHP/Shell/Extensions | |
parent | d919dfa1674ddd5226834b81728e1772917d6240 (diff) |
Add active record generator.
Diffstat (limited to 'framework/3rdParty/PhpShell/PHP/Shell/Extensions')
-rw-r--r-- | framework/3rdParty/PhpShell/PHP/Shell/Extensions/VerbosePrint.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/3rdParty/PhpShell/PHP/Shell/Extensions/VerbosePrint.php b/framework/3rdParty/PhpShell/PHP/Shell/Extensions/VerbosePrint.php index 843292b0..425937c1 100644 --- a/framework/3rdParty/PhpShell/PHP/Shell/Extensions/VerbosePrint.php +++ b/framework/3rdParty/PhpShell/PHP/Shell/Extensions/VerbosePrint.php @@ -4,12 +4,12 @@ class PHP_Shell_Extensions_VerbosePrint implements PHP_Shell_Extension { protected $oneshot_verbose = false; public function register() { - $cmd = PHP_Shell_Commands::getInstance(); +/* $cmd = PHP_Shell_Commands::getInstance(); $cmd->registerCommand('#^p #', $this, 'cmdPrint', 'p <var>', 'print the variable verbosly'); $opt = PHP_Shell_Options::getInstance(); $opt->registerOption('verboseprint', $this, 'optSetVerbose'); - +*/ } /** @@ -48,7 +48,7 @@ class PHP_Shell_Extensions_VerbosePrint implements PHP_Shell_Extension { $v = $this->opt_verbose || $this->oneshot_verbose; $this->oneshot_verbose = false; - + return $v; } } |