人人商城

settings.table.php 399B

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 SettingsTable extends We7Table {
  8. public function searchSetting($key) {
  9. return $this->query->from('core_settings')
  10. ->select('value')
  11. ->where('key', $key)
  12. ->get();
  13. }
  14. }