カスタム プラグインを使用してバックエンドに設定されているテンプレートを変更するにはどうすればよいですか?
私は使用を提案するさまざまなソリューションでした
$doc= JFactory::getDocument();
$doc->setTemplate("my_tempalte_name");
うまくいきませんでした。
Joomla 3.2 で。+ メソッドを利用できますJApplicationSite::setTemplate
。
でトリガーするシステム プラグインにこれを配置する必要がありますonAfterInitialise
。
public function onAfterInitialise()
{
$app = JFactory::getApplication();
// We want to change the template just on the FE
if ($app instanceof JApplicationSite)
{
$template = $app->getTemplate(); //use just debugging
var_dump($template); //use just debugging
// Set the new template and style params
$app->setTemplate('protostar', null);
$template = $app->getTemplate(); //use just debugging
var_dump($template); //use just debugging
}
}
の署名JApplicationSite::setTemplate
は次のとおりです。
/**
* Overrides the default template that would be used
*
* @param string $template The template name
* @param mixed $styleParams The template style parameters
*
* @return void
*
* @since 3.2
*/
public function setTemplate($template, $styleParams = null)