<?php
namespace We7\Table\Site;
class StylesVars extends \We7Table {
protected $tableName = 'site_styles_vars';
protected $primaryKey = 'id';
protected $field = array(
'uniacid',
'templateid',
'styleid',
'variable',
'content',
'description',
);
protected $default = array(
'uniacid' => '0',
'templateid' => '',
'styleid' => '',
'variable' => '',
'content' => '',
'description' => '',
);
public function getAllByStyleid($styleid) {
global $_W;
return $this->query->where('uniacid', $_W['uniacid'])->where('styleid', $styleid)->getall('variable');
}
}