예제 #1
0
파일: Publish.php 프로젝트: movim/moxl
 public function request()
 {
     $this->store();
     if ($this->_muc) {
         Muc::message($this->_to, $this->_content, $this->_html, $this->_id);
     } elseif ($this->_encrypted) {
         Message::encrypted($this->_to, $this->_content, $this->_html, $this->_id, $this->_replace);
     } else {
         Message::message($this->_to, $this->_content, $this->_html, $this->_id, $this->_replace);
     }
 }