Exemplo n.º 1
0
 /**
  * Status change handler: "Requires Authorization" to "Rejected"
  *
  * @return boolean
  */
 protected function handleStatusChangeReject()
 {
     $result = false;
     if ($this->canBeRejected()) {
         // Send email notifications
         \XLite\Core\Mailer::sendProductsReturnRejected($this);
         $result = true;
     }
     return $result;
 }