*/ class Mage_Dataflow_Model_Convert_Validator_Dryrun extends Mage_Dataflow_Model_Convert_Validator_Abstract { public function validate() { if ($this->getVar('dry_run') || $this->getProfile()->getDryRun()) { $this->addException(Mage::helper('dataflow')->__("Dry run set, stopping execution."), Mage_Dataflow_Model_Convert_Exceptin::FATAL); } return $this; } }