有没有办法生成块或创建类似 Moodle 中块内块的样式?
我想在 Moodle.s 的父块内创建几个块,有没有办法手动创建块实例???
或者
通过添加一些 html 等来修改块内容,因为它看起来像一个块。
I want to create few blocks inside a parent block in Moodle.s there a way to create block instance manually???
OR
Modify block content as it look like a block by adding some html etc..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,Moodle 不支持嵌套块。另一方面,拥有它可能没有任何意义,因为“块”是一个定义良好的独立实体,嵌入了一些非常简单的逻辑。
您可能想要做的是创建一个新块并使用 weblib.php 中的函数来创建其中所需的图形元素。如果您需要更复杂的东西,您可能需要一个“模块”(用 Moodle 术语来说)。
As far as I know, there's no support in Moodle for nested blocks. On the other hand, it would probably make no sense to have it, since the "block" is a well defined stand-alone entity, embedding some very simple logic.
What you may want to do is to create a new block and to use the functions from
weblib.php
to create the graphic elements that you need within it. If you need something more complicated, you will probably need a "module" (in Moodle terms).