예제 #1
0
파일: m_emails.php 프로젝트: nqpp/dstore
 function get()
 {
     $this->db->select("DATE_FORMAT(`emails`.`createdAt`,'%e %b %Y') as 'createdDate'", false);
     $this->db->select("DATE_FORMAT(`emails`.`sentAt`,'%e %b %Y') as 'sentDate'", false);
     $this->db->select("DATE_FORMAT(`emails`.`sentAt`,'%e %b %Y %k:%i') as 'sentDateTime'", false);
     $row = parent::get();
     return $row;
 }
예제 #2
0
파일: m_clients.php 프로젝트: nqpp/dstore
 function getJSON()
 {
     $row = parent::get();
     return json_encode($row);
 }