123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- namespace app\common\model;
- use think\facade\Db;
- /**
- * ============================================================================
- * DSMall多用户商城
- * ============================================================================
- * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
- * 网站地址: http://www.csdeshang.com
- * ----------------------------------------------------------------------------
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
- * 不允许对程序代码以任何形式任何目的的再发布。
- * ============================================================================
- * 数据层模型
- */
- class EditablePage extends BaseModel {
- public $page_info;
- /**
- * 新增可编辑页面
- * @author csdeshang
- * @param array $data 参数内容
- * @return bool 布尔类型的返回结果
- */
- public function addEditablePage($data) {
- return Db::name('editable_page')->insertGetId($data);
- }
- /**
- * 删除一个可编辑页面
- * @author csdeshang
- * @param array $editable_page_id 可编辑页面id
- * @return bool 布尔类型的返回结果
- */
- public function delEditablePage($editable_page_id) {
- //删除配置
- model('editable_page_config')->delEditablePageConfig(array('editable_page_id'=>$editable_page_id));
- return Db::name('editable_page')->where('editable_page_id', $editable_page_id)->delete();
- }
- /**
- * 获取可编辑页面列表
- * @author csdeshang
- * @param array $condition 查询条件
- * @param obj $pagesize 分页页数
- * @param str $orderby 排序
- * @return array 二维数组
- */
- public function getEditablePageList($condition = array(), $pagesize = '', $orderby = 'editable_page_id desc') {
- if ($pagesize) {
- $result = Db::name('editable_page')->where($condition)->order($orderby)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
- $this->page_info = $result;
- return $result->items();
- } else {
- return Db::name('editable_page')->where($condition)->order($orderby)->select()->toArray();
- }
- }
- public function getOneEditablePage($condition = array()) {
- return Db::name('editable_page')->where($condition)->find();
- }
- /**
- * 更新可编辑页面记录
- * @author csdeshang
- * @param array $data 更新内容
- * @return bool
- */
- public function editEditablePage($condition, $data) {
- return Db::name('editable_page')->where($condition)->update($data);
- }
- }
- ?>
|