你好有没有办法使用自定义php代码作为组件,在joomla 1.5中我使用了来自http://www.fijiwebdesign.com/products/joomla-php-pages.html的Joomla PHP Pages Component。
使用此组件,我可以将php文件分配给任何菜单并执行任何php命令,包括查询以选择/插入/更新数据库。
遗憾的是,未更新以使用joomal 2.5
还有其他任何组件或技巧吗?
由于
答案 0 :(得分:1)
您检查了以下链接吗?
http://extensions.joomla.org/extensions/edition/custom-code-in-content/1023
http://extensions.joomla.org/extensions/edition/custom-code-in-modules/6474
http://extensions.joomla.org/extensions/edition/custom-code-in-modules/15251
http://extensions.joomla.org/extensions/edition/custom-code-in-modules/4971
http://extensions.joomla.org/extensions/edition/custom-code-in-content/5051
答案 1 :(得分:0)
我使用this。它非常快,你甚至可以在一个快速的
中创建功能齐全的数据库应用程序它附带了一些我注意到的小错误,其中提到的是组件/ com_YOURCOM / views / YOURTHING / tmpl上的default.xml没有生成...所以你必须添加它,否则它不会显示为菜单项类型的选择。
default.xml只需要这样的东西:
<?xml version="1.0" encoding="utf-8"?>
<metadata>
<layout title="YOURNAME">
<message>YOUR AWESOME component.</message>
</layout>
</metadata>
祝你好运!