是您可以创建新视图.
它很简单,只需从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 = yourournamename& ;layout = yourlayoutoutnames.
在这里我提到视图文件夹名称必须是控制器和模型文件名我们可以用其他名称实现,但它会在你不善于joomla时为你创建问题.
注意:
要添加视图,您不需要安装组件,这根本不是一个好主意.
您还可以在视图中添加多个布局
你的tmpl文件夹里面只是创建新文件.也不要错过放在com_contents / controller和com_contents / model文件夹中的控制器和模型