Пример #1
0
 /**
  * Automatically set "unknown" state if not defined
  *
  * @return Mage_Payment_Model_Recurring_Profile
  */
 protected function _filterValues()
 {
     $result = parent::_filterValues();
     if (!$this->getState()) {
         $this->setState(self::STATE_UNKNOWN);
     }
     return $result;
 }