我正在尝试将变量从索引页面传递到文章视图。基本上div的宽度需要根据是否有侧边栏来改变。
索引.php:
if ($this->countModules('position-1')&$this->countModules('position-3')){
$content_margin = 'contentCenter';
}elseif ($this->countModules('position-1')&!$this->countModules('position-3')){
$content_margin = 'contentRight';
}elseif (!$this->countModules('position-1')&$this->countModules('position-3')){
$content_margin = 'contentLeft';
}else{
$content_margin = '';
}
然后如何访问组件中的 $content_margin 变量?
<jdoc:include type="component" class="<?php echo $content_margin; ?>" />