NewBe Joomla 1.7 使用 SQL 进行模板化
我在新的分类和文章中有一个标准的 joomla 模板 在我复制并重命名的 C:\x\htdocs\templates\beez_20\ 中,
我想重新登录......在页面的左侧 但我想在页面的主要部分编写数据库驱动的内容 a) 我是否使用我的索引文件并且在索引中,我可以为我的数据库内容包含一个 PHP 文件吗? b) 在 Joomla 中向表中添加字段时,我需要了解什么社会规则吗? c) 当用户使用时,如何获取该页面当时的用户。
莱克斯·迪恩.
I have a standard joomla template in a new cateragy and articale
in C:\x\htdocs\templates\beez_20\ that I have copyied over and renamed
I want to retian the log in ...... down the left hand side of the page
but I want to write a database driven content in the main part of my page
a) Do I use my Index file and were in the index can i include a PHP file for my database content.
b) Is thier any soical rules I need to know about in adding feilds to tables in Joomla.
c) How Do I get the user of this page at that time when the user is using it.
Lex Dean.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
a) 您不必将任何内容硬编码到index.php 中。您应该使用模块管理器将模块分配到站点内的各个页面
b) 您绝对不应该接触任何数据库表,因为这会导致更新核心 Joomla 或扩展程序出现问题。如果您需要存储数据,那么您需要编写一个扩展来处理新表中的数据。
c)
$user =& JFactory::getUser();
在深入了解您的项目之前,您确实应该看一下 Joomla 的一些教程。了解 Joomla 如何使用 index.php、模板、覆盖和模块将使您的 Joomla 体验变得更好。
a) You should not have to hard code anything in to index.php ever. You should use the module manager to assign modules to the various pages within the site
b) You should absolutely not touch any database table as this will cause problems with updating either core Joomla or extensions. If you need to store data, then you need to write an extension to handle the data in a new table.
c)
$user =& JFactory::getUser();
You should really take a look at some of the Joomla tutorials before you get too far in to your project. Understanding how Joomla uses index.php, templates, over rides, and modules will make your Joomla experience a much better one.