使用css.php文件中的模板参数的Joomla动态样式表

时间:2014-01-18 03:43:06

标签: php css joomla joomla3.2

我正在尝试使用动态css.php文件创建模板。我整个晚上都在谷歌上搜索一个解决方案,在一个用作css文件的php文件中调用joomla对象类。我知道我以前见过这件事,我从来没有注意过它是如何完成的。这就是我到目前为止所拥有的。

注意 - 我不想使用addstyledecloration,因为在处理多个参数时过于繁琐*

的index.php:

<?php                               
defined('_JEXEC') or die;
require($this->baseurl.'templates/'.$this->template.'/includes/config.php');
?>

<!DOCTYPE html>
<html lang="en" xmlns:fb="http://ogp.me/ns/fb#">
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <jdoc:include type="head" />
</head>

的config.php:

<?php
defined('_JEXEC') or die;
//joomla configuration
JLoader::import('joomla.filesystem.file');
JHtml::_('jquery.framework', false);
JHtml::_('bootstrap.framework');
$app = JFactory::getApplication();
$config = JFactory::getConfig();
$doc = JFactory::getDocument();
$template_path = $this->baseurl.'/'.'templates'.'/'.$this->template;
$jui_path = $this->baseurl.'/media/jui';

$doc->addStyleSheet($jui_path.'/css/bootstrap.min.css');
$doc->addStyleSheet($jui_path.'/css/bootstrap-responsive.min.css');
$doc->addScript($jui_path.'/js/bootstrap.min.js');
$doc->addStyleSheet($template_path.'/css/template.css');
$doc->addStyleSheet($template_path.'/includes/template-css.php');
$doc->addScript($template_path.'/js/template.js');
?>

模板css.php:

<?php
header("Content-type: text/css");
?>

body {background-color: #000;}
body {background-color: <?php $this->params->get('body') ?>;}

2 个答案:

答案 0 :(得分:0)

您必须在Joomla环境之外的请求中加载整个joomla框架。如何加载Joomla可以在JFactory failing to import找到。现在您可以通过数据库选择模板参数或加载更多类来获取模板对象(不确定如何执行此操作,不要使用我的开发笔记本电脑)。

答案 1 :(得分:0)

您必须先在templatedetails.xml中添加一个颜色选择器,其中包含模板参数
<field name="themecolor" type="color" description="Color picker" label="Template Color"/> 然后你必须在config.php文件中声明变量

$themecolor = $this->params->get('themecolor');
$_SESSION['themecolor'] = $themecolor;

现在您可以在css.php文件中使用此变量

body {background-color: <?php echo  $_SESSION['themecolor']; ?>}

您可以在此处详细了解模板参数 https://docs.joomla.org/Understanding_Joomla!_templates#Parameters

`