人人商城

profilefields.table.php 547B

1234567891011121314151617181920
  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 ProfilefieldsTable extends We7Table {
  8. protected $tableName = 'profile_fields';
  9. public function searchKeyword($keyword) {
  10. $this->query->where('title LIKE', "%{$keyword}%");
  11. return $this;
  12. }
  13. public function getFieldsList() {
  14. return $this->query->from($this->tableName)->orderby('displayorder', 'DESC')->getall();
  15. }
  16. }