インデックス ページから記事ビューに変数を渡そうとしています。基本的に、サイドバーがあるかどうかに基づいて div の幅を変更する必要があります。
index.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; ?>" />