123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- <?php
- /**
- * 上传文件模型
- *
- *
- *
- *
-
- */
- defined('InShopNC') or exit('Access Invalid!');
- class uploadModel
- {
- /**
- * 列表
- *
- * @param array $condition 检索条件
- * @return array 数组结构的返回结果
- */
- public function getUploadList($condition,$field='*'){
- $condition_str = $this->_condition($condition);
- $param = array();
- $param['table'] = 'upload';
- $param['field'] = $field;
- $param['where'] = $condition_str;
- $param['order'] = 'upload_id asc';
- $result = Db::select($param);
- return $result;
- }
- /**
- * 构造检索条件
- *
- * @param int $id 记录ID
- * @return string 字符串类型的返回结果
- */
- private function _condition($condition)
- {
- $condition_str = '';
- if ($condition['upload_type'] != ''){
- $condition_str .= " and upload_type = '". $condition['upload_type'] ."'";
- }
- if ($condition['item_id'] != ''){
- $condition_str .= " and item_id = '". $condition['item_id'] ."'";
- }
- if ($condition['file_name'] != '') {
- $condition_str .= " and file_name = '".$condition['file_name']."'";
- }
- if (isset($condition['upload_type_in'])){
- if ($condition['upload_type_in'] == ''){
- $condition_str .= " and upload_type in('')";
- }else{
- $condition_str .= " and upload_type in({$condition['upload_type_in']})";
- }
- }
- if (isset($condition['item_id_in'])){
- if ($condition['item_id_in'] == ''){
- $condition_str .= " and item_id in('')";
- }else{
- $condition_str .= " and item_id in({$condition['item_id_in']})";
- }
- }
- if (isset($condition['upload_id_in'])){
- if ($condition['upload_id_in'] == ''){
- $condition_str .= " and upload_id in('')";
- }else{
- $condition_str .= " and upload_id in({$condition['upload_id_in']})";
- }
- }
- if ($condition['upload_time_lt'] != ''){
- $condition_str .= " and upload_time < '". $condition['upload_time_lt'] ."'";
- }
- return $condition_str;
- }
- /**
- * 取单个内容
- *
- * @param int $id 分类ID
- * @return array 数组类型的返回结果
- */
- public function getOneUpload($id){
- if (intval($id) > 0){
- $param = array();
- $param['table'] = 'upload';
- $param['field'] = 'upload_id';
- $param['value'] = intval($id);
- $result = Db::getRow($param);
- return $result;
- }else {
- return false;
- }
- }
- /**
- * 新增
- *
- * @param array $param 参数内容
- * @return bool 布尔类型的返回结果
- */
- public function add($param){
- if (empty($param)){
- return false;
- }
- if (is_array($param)){
- $result = Db::insert('upload',$param);
- return $result;
- }else {
- return false;
- }
- }
- /**
- * 更新信息
- *
- * @param array $param 更新数据
- * @return bool 布尔类型的返回结果
- */
- public function update($param){
- if (empty($param)){
- return false;
- }
- if (is_array($param)){
- $tmp = array();
- foreach ($param as $k => $v){
- $tmp[$k] = $v;
- }
- $where = " upload_id = '". $param['upload_id'] ."'";
- $result = Db::update('upload',$tmp,$where);
- return $result;
- }else {
- return false;
- }
- }
- /**
- * 更新信息
- *
- * @param array $param 更新数据
- * @param array $conditionarr 条件数组
- * @return bool 布尔类型的返回结果
- */
- public function updatebywhere($param,$conditionarr){
- if (empty($param)){
- return false;
- }
- if (is_array($param)){
- //条件
- $condition_str = $this->_condition($conditionarr);
- //更新信息
- $tmp = array();
- foreach ($param as $k => $v){
- $tmp[$k] = $v;
- }
- $result = Db::update('upload',$tmp,$condition_str);
- return $result;
- }else {
- return false;
- }
- }
- /**
- * 删除分类
- *
- * @param int $id 记录ID
- * @return bool 布尔类型的返回结果
- */
- public function del($id){
- if (intval($id) > 0){
- $where = " upload_id = '". intval($id) ."'";
- $result = Db::delete('upload',$where);
- return $result;
- }else {
- return false;
- }
- }
- /**
- * 删除上传图片信息
- * @param mixed $id 删除上传图片记录编号
- */
- public function dropUploadById($id){
- if(empty($id)) {
- return false;
- }
- $condition_str = ' 1=1 ';
- if (is_array($id) && count($id)>0){
- $idStr = implode(',',$id);
- $condition_str .= " and upload_id in({$idStr}) ";
- }else {
- $condition_str .= " and upload_id = '{$id}' ";
- }
- $result = Db::delete('upload',$condition_str);
- return $result;
- }
- /**
- * 删除图片信息,根据where
- *
- * @param int $id 店铺id
- * @param array $conditionarr 条件数组
- * @return bool 布尔类型的返回结果
- */
- public function delByWhere($conditionarr){
- if(is_array($conditionarr)){
- $condition_str = $this->_condition($conditionarr);
- $result = Db::delete('upload',$condition_str);
- return $result;
- }else{
- return false;
- }
- }
- }
|