sitetemplates.table.php 502 B

1234567891011121314151617
  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 SitetemplatesTable extends We7Table {
  8. protected $tableName = 'site_templates';
  9. public function getAllTemplates() {
  10. return $this->query->getall('name');
  11. }
  12. public function getTemplateInfo($name) {
  13. return $this->query->from($this->tableName)->where('name', $name)->get();
  14. }
  15. }