Override Joomla Component Template(覆盖 Joomla 组件模板)
问题描述
我正在使用此 URL 访问组件的原始 HTML:
I am using this URL to access the raw HTML of a component:
/index.php?option=com_downloadform&tmpl=component
但是它也返回文档类型、标题标签、标题标签等.
However it also returns the document type, title tags, head tags etc.
有没有办法只返回和之间的内容?
Is there a way to return only the content between <body> and </body>?
谢谢,
伊恩
推荐答案
在您的模板文件夹中,创建一个文件(例如 raw.php)并且仅在该文件中放置:
Inside your template folder, create a file (e.g. raw.php) and inside that file place only:
<jdoc:include type="component" />
然后,您可以使用 /index.php?option=com_downloadform&tmpl=raw 访问组件的原始输出.链接中的 tmpl 参数必须是不带扩展名的文件名.
Then, you can use /index.php?option=com_downloadform&tmpl=raw to access the raw output of the component. The tmpl parameter in your link must be the name of the file without the extension.
这篇关于覆盖 Joomla 组件模板的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:覆盖 Joomla 组件模板
基础教程推荐
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 如何替换eregi() 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
