正如 Moodle 的文档所建议的那样,我创建了一个新的 Moodle 主题。
在 config.php 文件中,我定义了这样的布局:
$THEME->layouts = array(
// Most pages - if we encounter an unknown or a missing page type, this one is used.
'base' => array(
'theme' => 'nop',
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post'
),
'standard' => array(
'theme' => 'nop',
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post'
)
);
创建它后,我在 Moodle 的管理区域中选择了它,并清理了缓存。在管理主题选择页面中,我可以看到这个主题颜色、样式和新界面,但是,在 Moodle 的其他区域(每隔一个页面)我看不到它。
有谁知道为什么会发生这种奇怪的事情?
谢谢,