*/ class Varien_Convert_Validator_Dryrun extends Varien_Convert_Validator_Abstract { public function validate() { if ($this->getVar('dry_run') || $this->getProfile()->getDryRun()) { $this->addException('Dry run set, stopping execution', Varien_Convert_Exceptin::FATAL); } return $this; } }