You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

181 lines
4.8 KiB
PHTML

5 years ago
<?php
// +----------------------------------------------------------------------
// | OneThink [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013 http://www.onethink.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: huajie <banhuajie@163.com>
// +----------------------------------------------------------------------
namespace Admin\Model;
use Think\Model;
/**
* 投放平台模型
* @author 鹿文学
*/
class LaunchPlatformModel extends Model{
/* 自动验证规则 */
protected $_validate = array(
array('name', 'require', '投放平台名称不能为空', self::MUST_VALIDATE, 'regex', self::MODEL_BOTH),
array('name', '1,30', '投放平台名称不能超过30个字符', self::VALUE_VALIDATE, 'length', self::MODEL_BOTH),
array('name', '', '该投放平台已添加,请重新输入!', self::EXISTS_VALIDATE, 'unique', self::MODEL_INSERT),
array('name', '', '该投放平台已存在,请重新输入!', self::EXISTS_VALIDATE, 'unique', self::MODEL_UPDATE),
);
/* 自动完成规则 */
protected $_auto = array(
array('create_time', 'getCreateTime', self::MODEL_INSERT,'callback'),
array('update_time', 'getUpdateTime', self::MODEL_BOTH,'callback'),
);
/**
* 构造函数
* @param string $name 模型名称
* @param string $tablePrefix 表前缀
* @param mixed $connection 数据库连接信息
*/
public function __construct($name = '', $tablePrefix = '', $connection = '') {
/* 设置默认的表前缀 */
$this->tablePrefix ='tab_';
/* 执行构造方法 */
parent::__construct($name, $tablePrefix, $connection);
}
/**
* 投放平台列表
* @param integer $p 页码
* @param array $map 条件数组
* @param array $flag 是否需要分页(0:需要1:不需要,只要数据)
* @return array 结果数据集
* @author 鹿文学
*/
public function lists($p=1,$map=array(),$flag=0) {
$page = intval($p);
$page = $page ? $page : 1; //默认显示第一页数据
if(isset($_REQUEST['row'])) {$row = $_REQUEST['row'];}else{$row = 10;}
$lists = $this->where($map)->page($page,$row)->order('id desc')->select();
if($flag) {
return $lists;
} else {
$count = $this->where($map)->count();
$data['data'] = $lists;
$page = set_pagination($count,$row);
if($page) {$data['page']=$page;}
return $data;
}
}
/**
* 投放平台所有列表
* @param array $map 条件数组
* @return array 结果数据集
* @author 鹿文学
*/
public function all_lists($map=array()) {
$lists = $this->where($map)->order('id desc')->select();
return $lists;
}
/**
* 创建时间不写则取当前时间
* @return int 时间戳
* @author huajie <banhuajie@163.com>
*/
protected function getCreateTime(){
$create_time = I('post.create_time');
return $create_time?strtotime($create_time):NOW_TIME;
}
protected function getUpdateTime(){
$update_time = I('post.update_time');
return $update_time?strtotime($update_time):NOW_TIME;
}
/**
* 新增或更新一个游戏
* @param array $data 手动传入的数据
* @return boolean fasle 失败 int 成功 返回完整的数据
* @author 王贺
*/
public function update($data = null){
/* 获取数据对象 */
$data = $this->token(false)->create($data);
if(empty($data)){
return false;
}
/* 添加或新增基础内容 */
if(empty($data['id'])){ //新增数据
$id = $this->add($data); //添加基础内容
if(!$id){
$this->error = '新增基础内容出错!';
return false;
}
} else { //更新数据
$status = $this->save(); //更新基础内容
if(false === $status){
$this->error = '更新基础内容出错!';
return false;
}
}
return $data;
}
/**
* 删除投放平台
* @author 鹿文学
*/
public function del() {
$ids = array_unique((array)I('ids',null));
if (empty($ids)) {
$this->error ='请选择要操作的数据!';
return false;
}
$map = array('id' => array('in', $ids) );
if($this->where($map)->delete()){
$this->error ='删除成功';
return true;
} else {
$this->error ='删除失败!';
return false;
}
}
}