Public Member Functions | |
validate () |
Definition at line 37 of file Dryrun.php.
validate | ( | ) |
Implements Varien_Convert_Validator_Interface.
Definition at line 39 of file Dryrun.php.
00040 { 00041 if ($this->getVar('dry_run') || $this->getProfile()->getDryRun()) { 00042 $this->addException(__("Dry run set, stopping execution"), Varien_Convert_Exceptin::FATAL); 00043 } 00044 return $this; 00045 }