123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <?php
- /**
- * 店铺模型管理
- *
- *
- *
- *
-
- */
- defined('InShopNC') or exit('Access Invalid!');
- class store_plateModel extends Model {
- public function __construct(){
- parent::__construct('store_plate');
- }
-
- /**
- * 版式列表
- * @param array $condition
- * @param string $field
- * @param int $page
- * @return array
- */
- public function getStorePlateList($condition, $field = '*', $page = 0) {
- return $this->field($field)->where($condition)->page($page)->select();
- }
-
- /**
- * 版式详细信息
- * @param array $condition
- * @return array
- */
- public function getStorePlateInfo($condition) {
- return $this->where($condition)->find();
- }
-
- public function getStorePlateInfoByID($plate_id, $fields = '*') {
- $info = $this->_rStorePlateCache($plate_id, $fields);
- if (empty($info)) {
- $info = $this->getStorePlateInfo(array('plate_id' => $plate_id));
- $this->_wStorePlateCache($plate_id, $info);
- }
- return $info;
- }
-
- /**
- * 添加版式
- * @param unknown $insert
- * @return boolean
- */
- public function addStorePlate($insert) {
- return $this->insert($insert);
- }
-
- /**
- * 更新版式
- * @param array $update
- * @param array $condition
- * @return boolean
- */
- public function editStorePlate($update, $condition) {
- $list = $this->getStorePlateList($condition, 'plate_id');
- if (empty($list)) {
- return true;
- }
- $result = $this->where($condition)->update($update);
- if ($result) {
- foreach ($list as $val) {
- $this->_dStorePlateCache($val['plate_id']);
- }
- }
- return $result;
- }
-
- /**
- * 删除版式
- * @param array $condition
- * @return boolean
- */
- public function delStorePlate($condition) {
- $list = $this->getStorePlateList($condition, 'plate_id');
- if (empty($list)) {
- return true;
- }
- $result = $this->where($condition)->delete();
- if ($result) {
- foreach ($list as $val) {
- $this->_dStorePlateCache($val['plate_id']);
- }
- }
- return $result;
- }
-
- /**
- * 读取店铺关联板式缓存缓存
- * @param int $plate_id
- * @param string $fields
- * @return array
- */
- private function _rStorePlateCache($plate_id, $fields) {
- return rcache($plate_id, 'store_plate', $fields);
- }
-
- /**
- * 写入店铺关联板式缓存缓存
- * @param int $plate_id
- * @param array $info
- * @return boolean
- */
- private function _wStorePlateCache($plate_id, $info) {
- return wcache($plate_id, $info, 'store_plate');
- }
-
- /**
- * 删除店铺关联板式缓存缓存
- * @param int $plate_id
- * @return boolean
- */
- private function _dStorePlateCache($plate_id) {
- return dcache($plate_id, 'store_plate');
- }
- }
|