【phpcms-v9】category.php檔案分析-新增欄目
阿新 • • 發佈:2019-01-17
[html] view
plain copy
print?
- <?php
- //路徑:phpcms/modules/admin/category.php控制器,主要用來完成欄目相關的操作
- defined('IN_PHPCMS') or exit('No permission resources.'); //防止惡意訪問
- pc_base::load_app_class('admin','admin',0); //載入admin模組下的admin.class.php類庫檔案
-
class category extends admin {
- private $db; //代表當前category_model類的例項化物件
- public $siteid;
- function __construct() {
- parent::__construct(); //父類的建構函式,即:admin.class.php類的建構函式
-
$this->db = pc_base::load_model('category_model'); //載入 category_model
- $this->siteid = $this->get_siteid(); //獲取當前的站點ID,父類方法
- }
- /**
- * 管理欄目
- */
- public function init () {
- $show_pc_hash = '';
- $tree = pc_base::load_sys_class('tree'); //載入系統通用的樹型類,可以生成任何樹型結構,返回一個樹類的例項化物件
-
$models
- $sitelist = getcache('sitelist','commons'); //獲取"caches/caches_commons/caches_data/sitelist.cache.php"中快取資料
- $category_items = array(); //定義一個數組
- foreach ($models as $modelid=>$model) { //模型id=>模型資訊(模型:文章模型、下載模型、圖片模型)
- //$modelid:模型id
- $category_items[$modelid] = getcache('category_items_'.$modelid,'commons');//當前模型id下所有欄目是否有子欄目,1-有 0-沒有
- }
- $tree->icon = array(' │ ',' ├─ ',' └─ ');//樹形圖示
- $tree->nbsp = ' '; //三個空格
- $categorys = array();
- //讀取快取
- $result = getcache('category_content_'.$this->siteid,'commons');//當前站點ID下所有欄目的詳細配置資訊
- $show_detail = count($result) <500 ? 1 : 0; //如果快取檔案中的分類數量小於500,則$show_detail=1
- $parentid = $_GET['parentid'] ? intval($_GET['parentid']) : 0; //此時$parentid=0,代表頂級分類
- $html_root = pc_base::load_config('system','html_root'); //生成靜態檔案的路徑 ,預設為"/html"
- //0-內部欄目、1-<fontcolor="blue">單網頁</font> 、2-<fontcolor="red">外部連結</font>
- $types = array(0 => L('category_type_system'),1 => L('category_type_page'),2 => L('category_type_link'));
- if(!empty($result)) {
- foreach($result as $r) {
- $r['modelname'] = $models[$r['modelid']]['name']; //空、文章模型、下載模型、圖片模型
- $r['str_manage'] = '';
- if(!$show_detail) {
- if($r['parentid']!=$parentid) continue;
- $r['parentid'] = 0;
- $r['str_manage'] .= '<a href="?m=admin&c=category&a=init&parentid='.$r['catid'].'&menuid='.$_GET['menuid'].'&s='.$r['type'].'&pc_hash='.$_SESSION['pc_hash'].'">'.L('manage_sub_category').'</a> | ';
- }
- //新增子欄目的url連結 $r['type']:1-單網頁 0-有子欄目的分類
- $r['str_manage'] .= '<a href="?m=admin&c=category&a=add&parentid='.$r['catid'].'&menuid='.$_GET['menuid'].'&s='.$r['type'].'&pc_hash='.$_SESSION['pc_hash'].'">'.L('add_sub_category').'</a> | ';
- //修改、刪除、批量移動 的url連結
- $r['str_manage'] .= '<a href="?m=admin&c=category&a=edit&catid='.$r['catid'].'&menuid='.$_GET['menuid'].'&type='.$r['type'].'&pc_hash='.$_SESSION['pc_hash'].'">'.L('edit').'</a> | <a href="javascript:confirmurl(\'?m=admin&c=category&a=delete&catid='.$r['catid'].'&menuid='.$_GET['menuid'].'\',\''.L('confirm',array('message'=>addslashes($r['catname']))).'\')">'.L('delete').'</a> | <ahref="?m=admin&c=category&a=remove&catid='.$r['catid'].'&pc_hash='.$_SESSION['pc_hash'].'">'.L('remove','','content').'</a>';
- //0-內部欄目、1-單網頁、2-外部連結
- $r['typename'] = $types[$r['type']];
- //是否在導航顯示:1-顯示 2-不顯示 注意:不顯示時會出現一個不在導航顯示的小圖示
- $r['display_icon'] = $r['ismenu'] ? '' : ' <imgsrc ="'.IMG_PATH.'icon/gear_disable.png"title="'.L('not_display_in_menu').'">';
- //如果為單網頁或無子分類
- if($r['type'] || $r['child']) {
- $r['items'] = '';//資料量為空
- } else {
- //資料量
- $r['items'] = $category_items[$r['modelid']][$r['catid']];
- }
- $r['help'] = '';
- //將字串轉換為陣列:$r['setting']-新增分類時的配置項,是一個字串
- $setting = string2array($r['setting']);
- //訪問:如, 'url' => 'http://zhencms.com/html/dajiafengfan/'
- if($r['url']) {
- if(preg_match('/^(http|https):\/\//', $r['url'])) {
- //分類目錄名稱
- $catdir = $r['catdir'];
- //是否生成到根目錄
- $prefix = $r['sethtml'] ? '' : $html_root;
- if($this->siteid==1) {
- //分類目錄:"html/父級目錄名稱/當前目錄名稱"
- $catdir = $prefix.'/'.$r['parentdir'].$catdir;
- } else {
- $catdir = $prefix.'/'.$sitelist[$this->siteid]['dirname'].$html_root.'/'.$catdir;
- }
- if($r['type']==0 && $setting['ishtml'] && strpos($r['url'], '?')===false && substr_count($r['url'],'/')<4) $r['help'] = '<imgsrc="'.IMG_PATH.'icon/help.png"title="'.L('tips_domain').$r['url'].'
- '.L('directory_binding').'
- '.$catdir.'/">';