gpt4 book ai didi

php - 创建 Moodle 2 主题

转载 作者:行者123 更新时间:2023-12-04 05:45:41 26 4
gpt4 key购买 nike

我创建了一个新的 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 的其他区域(每隔一个页面)我看不到它。

有人知道为什么会发生这种奇怪的事情吗?

谢谢,

最佳答案

我可以通过在 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'
),
'frontpage' => array(
'theme' => 'nop',
'file' => 'general.php',
'regions' => array('side-pre', 'side-post'),
'defaultregion' => 'side-post'
) );

关于php - 创建 Moodle 2 主题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10719794/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com