phpcms v9手機(jī)門(mén)戶網(wǎng)站用的人比較少,所有官網(wǎng)也沒(méi)有太多的介紹,phpcms v9手機(jī)門(mén)戶是不支持單頁(yè)面的調(diào)用,今天給大家介紹一下如何調(diào)取phpcms v9手機(jī)門(mén)戶網(wǎng)站的單頁(yè)。
首先打開(kāi)\phpcms\modules\wap\index.php,第283行左右,增加控制器函數(shù)
//單頁(yè)面 function page() { $WAP = $this->wap; $TYPE = $this->types; $WAP_SETTING = string2array($WAP['setting']); $GLOBALS['siteid'] = max($this->siteid,1); $catid = intval($_GET['catid']); if(!$catid) exit(L('parameter_error')); $this->page_db = pc_base::load_model('page_model'); $data = $this->page_db->get_one(array('catid'=>$catid)); if(!$data) showmessage(L('info_does_not_exists'),'blank'); extract($data); include template('wap', 'page'); }
(2)在手機(jī)模板文件夾里邊(\phpcms\templates\default\wap)新增page.html,就行pc站調(diào)用內(nèi)容一樣,直接使用pc站的代碼調(diào)用,比如:{$title}、{$content}等
(3)導(dǎo)航處調(diào)用該欄目的鏈接為:{WAP_SITEURL}&a=page&catid=3 (catid=3 此處直接填寫(xiě)pc站該欄目對(duì)應(yīng)的catid即可)
這樣就完成了phocms手機(jī)門(mén)戶的單頁(yè)。
關(guān)鍵詞: