我正在使用unclecheese / dashboard模块,我使用它就像在README中描述的那样。我使用silverstripe 3.5.3
我收到此错误消息:
[用户警告]找不到以下模板(否) 正在使用的主题):DashboardMostActiveUsersPanel.ss
这是小组内容:
class DashboardMostActiveUsersPanel extends DashboardPanel{
private static $db = array (
'Count' => 'Int',
);
public function getLabel() {
return 'Most Active Users';
}
public function getDescription() {
return 'Shows the most active Users.';
}
public function getConfiguration() {
$fields = parent::getConfiguration();
$fields->push(TextField::create("Count", "Number of users to show"));
return $fields;
}
public function getMostActiveMembers() {
$members = Member::get()->sort("Activity DESC")->limit($this->Count);
return $members;
}
public function PanelHolder() {
return parent::PanelHolder();
}
}
这是模板:
<div class="dashboard-recent-orders">
<ul>
<% loop $MostActiveMembers %>
<li>$Name, $Activity</li>
<% end_loop %>
</ul>
</div>
这是错误的来源:theme_enabled
为空
Config::inst()->get('SSViewer', 'theme_enabled‘)
我在CMS后端设置了主题,我在config.yml
中设置了
SSViewer:
theme: 'my-theme'
我还尝试将模板放在/ themes目录中的不同文件夹中。但仍然没有运气。我错过了什么帮助将非常感谢。
答案 0 :(得分:6)
主题只影响前端。后端不使用它们。您需要将模板放在mysite/
目录中,或者放在$project
的任何目录中。