123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <?php
- /**
- * position_api.class.php 推荐至栏目接口类
- *
- * @copyright (C) 2005-2010 PHPCMS
- * @license http://www.phpcms.cn/license/
- * @lastmodify 2010-10-14
- */
- defined('IN_PHPCMS') or exit('No permission resources.');
- class push_api {
- private $db, $pos_data; //数据调用属性
-
- public function __construct() {
- $this->db = pc_base::load_model('content_model'); //加载数据模型
- }
-
- /**
- * 接口处理方法
- * @param array $param 属性 请求时,为模型、栏目数组。提交添加为二维信息数据 。例:array(1=>array('title'=>'多发发送方法', ....))
- * @param array $arr 参数 表单数据,只在请求添加时传递。 例:array('modelid'=>1, 'catid'=>12);
- */
- public function category_list($param = array(), $arr = array()) {
- if ($arr['dosubmit']) {
- $id = $_POST['id'];
- if(empty($id)) return true;
- $id_arr = explode('|',$id);
- if(count($id_arr)==0) return true;
- $old_catid = intval($_POST['catid']);
- if(!$old_catid) return true;
- $ids = $_POST['ids'];
- if(empty($ids)) return true;
- $ids = explode('|', $ids);
- $siteid = intval($_POST['siteid']);
- $siteids = getcache('category_content','commons');
- $oldsiteid = $siteids[$old_catid];
- $this->categorys = getcache('category_content_'.$oldsiteid,'commons');
- $modelid = $this->categorys[$old_catid]['modelid'];
- $this->db->set_model($modelid);
- $tablename = $this->db->table_name;
- $this->hits_db = pc_base::load_model('hits_model');
- foreach($id_arr as $id) {
- $this->db->table_name = $tablename;
- $r = $this->db->get_one(array('id'=>$id));
- $linkurl = preg_match('/^http:\/\//',$r['url']) ? $r['url'] : siteurl($siteid).$r['url'];
- foreach($ids as $catid) {
- $siteid = $siteids[$catid];
- $this->categorys = getcache('category_content_'.$siteid,'commons');
- $modelid = $this->categorys[$catid]['modelid'];
- $this->db->set_model($modelid);
- $newid = $this->db->insert(
- array('title'=>$r['title'],
- 'style'=>$r['style'],
- 'thumb'=>$r['thumb'],
- 'keywords'=>$r['keywords'],
- 'description'=>$r['description'],
- 'status'=>$r['status'],
- 'catid'=>$catid,
- 'url'=>$linkurl,
- 'sysadd'=>1,
- 'username'=>$r['username'],
- 'inputtime'=>$r['inputtime'],
- 'updatetime'=>$r['updatetime'],
- 'islink'=>1
- ),true);
- $this->db->table_name = $this->db->table_name.'_data';
- $this->db->insert(array('id'=>$newid));
- $hitsid = 'c-'.$modelid.'-'.$newid;
- $this->hits_db->insert(array('hitsid'=>$hitsid,'catid'=>$catid,'updatetime'=>SYS_TIME));
- }
- }
- return true;
- } else {
- $siteid = get_siteid();
- $this->categorys = getcache('category_content_'.$siteid,'commons');
- $tree = pc_base::load_sys_class('tree');
- $tree->icon = array(' │ ',' ├─ ',' └─ ');
- $tree->nbsp = ' ';
- $categorys = array();
- $this->catids_string = array();
- if($_SESSION['roleid'] != 1) {
- $this->priv_db = pc_base::load_model('category_priv_model');
- $priv_result = $this->priv_db->select(array('action'=>'add','roleid'=>$_SESSION['roleid'],'siteid'=>$siteid,'is_admin'=>1));
- $priv_catids = array();
- foreach($priv_result as $_v) {
- $priv_catids[] = $_v['catid'];
- }
- if(empty($priv_catids)) return '';
- }
- foreach($this->categorys as $r) {
- if($r['siteid']!=$siteid || $r['type']!=0) continue;
- if($_SESSION['roleid'] != 1 && !in_array($r['catid'],$priv_catids)) {
- $arrchildid = explode(',',$r['arrchildid']);
- $array_intersect = array_intersect($priv_catids,$arrchildid);
- if(empty($array_intersect)) continue;
- }
- if($r['child']) {
- $r['checkbox'] = '';
- $r['style'] = 'color:#8A8A8A;';
- } else {
- $checked = '';
- if($typeid && $r['usable_type']) {
- $usable_type = explode(',', $r['usable_type']);
- if(in_array($typeid, $usable_type)) {
- $checked = 'checked';
- $this->catids_string[] = $r['catid'];
- }
- }
- $r['checkbox'] = "<input type='checkbox' name='ids[]' value='{$r[catid]}' {$checked}>";
- $r['style'] = '';
- }
- $categorys[$r['catid']] = $r;
- }
- $str = "<tr>
- <td align='center'>\$checkbox</td>
- <td style='\$style'>\$spacer\$catname</td>
- </tr>";
- $tree->init($categorys);
- $categorys = $tree->get_tree(0, $str);
- return $categorys;
- }
- }
- }
- ?>
|