是您可以創建一個新視圖。
其簡單隻需從您的com_content複製任何視圖(類別,博客)。
文件結構應該像文件夾內。
Step 1
view.html.php
tmpl
your layout names(default.php)
xml file.
Also remember to change the class name of the view.html.php
Step 2
Add a controller file (just make a copy of existing one category or blog)
Controller name must be your new view folder name.
Also remember to change the class name of the controller
step 3
add a model file for your new view (same make copy of any existing)
remember to change the class name and file name should be view folder name.
然後你就可以訪問給予正確的URL這一觀點。 例如:www.example.com/index.php?option=com_content & view = yourviewname & layout = yourlayoutnames。
在這裏我提到查看文件夾名稱必須是控制器和模型文件名稱,我們可以用其他名稱來實現,但它會爲您創建問題,當你不擅長joomla時。
注意: 添加一個視圖,你不需要安裝一個組件,它根本不是一個好主意。
你也可以在視圖 添加您的TMPL文件夾內多個佈局只是創造新files.Also不要錯過控制器和模型擺在com_contents /控制器和com_contents/model文件夾
如需更多幫助take a look at this
http://docs.joomla.org/Developing_a_Model-View-Controller_Component/2.5/Introduction – ChelseaStats
要擴展com_content功能或要覆蓋一個視圖,或建立一個新的組件,做什麼? –
@KutF這不是我想要的。 –