mdnSend() public method

public mdnSend ( $mdn )
Exemplo n.º 1
0
Arquivo: Mdn.php Projeto: horde/horde
 /**
  * Check if we should and are able to send an MDN.
  *
  * @boolean
  */
 public function mdnCheck()
 {
     if (!$this->_sysCheck() || !$this->_msgCheck()) {
         return false;
     }
     return $this->_connector->mdnSend($this);
 }