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.

72 lines
2.5 KiB
PHP

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?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 huajie <banhuajie@163.com>
*/
class ActionModel extends Model {
/* 自动验证规则 */
protected $_validate = array(
array('name', 'require', '行为标识必须', self::MUST_VALIDATE, 'regex', self::MODEL_BOTH),
array('name', '/^[a-zA-Z]\w{0,39}$/', '标识不合法', self::MUST_VALIDATE, 'regex', self::MODEL_BOTH),
array('name', '', '标识已经存在', self::MUST_VALIDATE, 'unique', self::MODEL_BOTH),
array('title', 'require', '标题不能为空', self::MUST_VALIDATE, 'regex', self::MODEL_BOTH),
array('title', '1,80', '标题长度不能超过80个字符', self::MUST_VALIDATE, 'length', self::MODEL_BOTH),
array('remark', 'require', '行为描述不能为空', self::MUST_VALIDATE, 'regex', self::MODEL_BOTH),
array('remark', '1,140', '行为描述不能超过140个字符', self::MUST_VALIDATE, 'length', self::MODEL_BOTH),
);
/* 自动完成规则 */
protected $_auto = array(
array('status', 1, self::MODEL_INSERT, 'string'),
array('update_time', 'time', self::MODEL_BOTH, 'function'),
);
/**
* 新增或更新一个行为
* @return boolean fasle 失败 int 成功 返回完整的数据
* @author huajie <banhuajie@163.com>
*/
public function update(){
/* 获取数据对象 */
$data = $this->create($_POST);
if(empty($data)){
return false;
}
/* 添加或新增行为 */
if(empty($data['id'])){ //新增数据
$id = $this->add(); //添加行为
if(!$id){
$this->error = '新增行为出错!';
return false;
}
} else { //更新数据
$status = $this->save(); //更新基础内容
if(false === $status){
$this->error = '更新行为出错!';
return false;
}
}
//删除缓存
S('action_list', null);
//内容添加或更新完成
return $data;
}
}