You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
741 B

  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3. require APPPATH . '/libraries/REST_Controller.php';
  4. class Board extends REST_Controller
  5. {
  6. /********************************************************************
  7. * 게시판 목록 가져오기
  8. *******************************************************************/
  9. function index_get()
  10. {
  11. $return['lists'] =
  12. $this->db
  13. ->select('SQL_CALC_FOUND_ROWS *', FALSE)
  14. ->order_by('reg_datetime DESC')
  15. ->get('board')
  16. ->result_array();
  17. $return['totalCount'] = (int)$this->db->query("SELECT FOUND_ROWS() AS cnt")->row(0)->cnt;
  18. $this->response($return, 200);
  19. }
  20. }