我必须在网站的主题部分输入一些代码。我知道我需要在index.php文件中插入代码。我正在使用joomla 3.1。我已将文件放在/home/templates/template-name/index.php中。问题是这个文件不是应该的。
我看不到头部或身体或页面应该有的任何东西。任何人都可以帮忙找到该文件吗?
这是文件中的代码:
<?php
// No direct access.
defined('_JEXEC') or die;
if(!defined('DS')){
define('DS',DIRECTORY_SEPARATOR);
}
// Add JavaScript Frameworks
JHtml::_('bootstrap.framework');
// enable showing errors in PHP
ini_set('error_reporting', E_ALL & ~E_NOTICE & ~E_WARNING & ~E_STRICT);
ini_set('display_errors','On');
// include framework classes and files
require_once('lib/gk.framework.php');
require_once('lib/framework/gk.const.php');
// run the framework
$tpl = new GKTemplate($this, $GK_TEMPLATE_MODULE_STYLES);
// EOF
答案 0 :(得分:0)
模板(包括头部和身体)可能由
生成$tpl = new GKTemplate($this, $GK_TEMPLATE_MODULE_STYLES);
通过Google搜索GKTemplate
我发现一些论坛建议在模板文件夹中查看/layouts/GKTemplate.php
。