当前位置:首页 > CMS教程 > phpcms > 列表

【phpcms-v9】后台发布文章时切换栏目的功能实现

发布:smiling 来源: PHP粉丝网  添加日期:2014-10-23 16:46:08 浏览: 评论:0 

1.有时候在后台发布文章时,需要切换栏目.

2.实现第一步,修改modules/content/fields/catid/form.inc.php文件为如下:

  1. function catid($field$value$fieldinfo) {   
  2.     if(!$value$value = $this->catid;   
  3.     $publish_str = '';   
  4.     if(defined('IN_ADMIN') && ROUTE_A=='add'$publish_str = " <a href='javascript:;' onclick=\"omnipotent('selectid','?m=content&c=content&a=add_othors&siteid=".$this->siteid."','".L('publish_to_othor_category')."',1);return false;\" style='color:#B5BFBB'>[".L('publish_to_othor_category')."]</a><ul class='list-dot-othors' id='add_othors_text'></ul>";   
  5.       //开源软件:phpfensi.com 
  6.                $publish_str1 = " <a href='javascript:;' onclick=\"omnipotent('selectid','?m=content&c=content&a=change_cat&siteid=".$this->siteid."','".L('change_cat')."',1);return false;\" style='color:#B5BFBB'>[".目标分类."]</a><ul class='list-dot-othors' id='add_othors_text'></ul>";   
  7.                return '<input type="hidden" name="info['.$field.']" value="'.$value.'">'.$this->categorys[$value]['catname'].$publish_str.$publish_str1;   

3.实现第二步,在modules/content/content.php控制器文件中添加如下函数:

  1. /**  
  2.      * 切换栏目  
  3.      */   
  4.     public function change_cat() {   
  5.         $show_header = '';   
  6.         $sitelist = getcache('sitelist','commons');   
  7.         $siteid = $_GET['siteid'];   
  8.         include $this->admin_tpl('change_cat');   
  9.            
  10.     } 

4.实现第三步:在modules/content/templates/下添加change_cat.tpl.php模板文件:

  1. <?php   
  2. defined('IN_ADMIN'or exit('No permission resources.');   
  3. include $this->admin_tpl('header','admin');   
  4. ?>   
  5. <div class="pad-10">   
  6. <input type="hidden" value="content" name="m">   
  7. <input type="hidden" value="content" name="c">   
  8. <input type="hidden" value="public_relationlist" name="a">   
  9. <input type="hidden" value="<?php echo $modelid;?>" name="modelid">   
  10.     <div style="width:500px; padding:2px; border:1px solid #d8d8d8; float:left; margin-top:10px; margin-right:10px; overflow:hidden">   
  11.     <table width="100%" cellspacing="0" class="table-list" >   
  12.             <thead>   
  13.                 <tr>   
  14.                 <th width="100"><?php echo L('catid');?></th>   
  15.                 <th ><?php echo L('catname');?></th>   
  16.                 <th width="150" ><?php echo L('select_model_name');?></th>   
  17.                 </tr>   
  18.             </thead>   
  19.         <tbody id="load_catgory">   
  20.         <?php echo $categorys;?>   
  21.         </tbody>   
  22.         </table>   
  23.     </div>   
  24.    
  25.     <div style="overflow:hidden;_float:left;margin-top:10px;*margin-top:0;_margin-top:0; width:144px">   
  26.     <fieldset>   
  27.         <legend><?php echo L('category_checked');?></legend>   
  28.     <ul class='list-dot-othors' id='catname'></ul>   
  29.     </fieldset>   
  30.     </div>   
  31. </div>   
  32. <style type="text/css">   
  33. .line_ff9966,.line_ff9966:hover td{background-color:#FF9966}   
  34. .line_fbffe4,.line_fbffe4:hover td {background-color:#fbffe4}   
  35. .list-dot-othors li{float:none; width:auto}   
  36. </style>   
  37. <SCRIPT LANGUAGE="JavaScript">   
  38. <!--   
  39.     function select_list(obj,title,id) {   
  40.         var relation_ids = window.top.$('#relation').val();   
  41.         var sid = 'v'+id;   
  42.         $(obj).attr('class','line_fbffe4');   
  43.         //var str = "<li id='"+sid+"'>·<input type='hidden' name='othor_catid["+id+"]'><span>"+title+"</span><a href='javascript:;' class='close' onclick=\"remove_id('"+sid+"')\"></a></li>";   
  44.             var str = "<li id='"+sid+"'>·<input type='hidden'  name='info[catid]' value='"+id+"'><span>"+title+"</span><a href='javascript:;' class='close' onclick=\"remove_id('"+sid+"')\"></a></li>";       
  45.         window.top.$('#add_othors_text').emptyempty().append(str);   
  46.         $('#catname').emptyempty().append(str);   
  47.         if(relation_ids =='' ) {   
  48.             window.top.$('#relation').val(id);   
  49.         } else {   
  50.             relation_ids = relation_ids+'|'+id;   
  51.             window.top.$('#relation').val(relation_ids);   
  52.         }   
  53. }   
  54.    
  55. function change_siteid(siteid) {   
  56.         $("#load_catgory").load("?m=content&c=content&a=public_getsite_categorys&siteid="+siteid);   
  57. }   
  58. //移除ID   
  59. function remove_id(id) {   
  60.     $('#'+id).remove();   
  61.     window.top.$('#'+id).remove();   
  62. }   
  63. change_siteid(<?php echo $this->siteid;?>);   
  64. //-->   
  65. </SCRIPT>   
  66. </body>   
  67. </html> 

Tags: phpcms后台栏目 phpcms切换栏目

分享到: