material.table.php 446 B

12345678910111213141516
  1. <?php
  2. /**
  3. * [WeEngine System] Copyright (c) 2014 WE7.CC
  4. * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
  5. */
  6. defined('IN_IA') or exit('Access Denied');
  7. class MaterialTable extends We7Table {
  8. public function materialNewsList($attch_id) {
  9. $this->query->from('wechat_news')
  10. ->where('attach_id', $attch_id)
  11. ->orderby('displayorder', 'ASC');
  12. return $this->query->getall();
  13. }
  14. }