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