在 Moodle LMS 中托管 PHP 应用程序
美好的一天,我想知道是否有办法在 Moodle LMS 中运行 php 应用程序。
在用 php 实现之前,信息采用静态 html 文档的形式,只需将其上传到文件夹中,访问这些文件就可以看到 Moodle 中托管的站点的外观。
可以使用需要服务处理来实现所需功能的 PHP 文件来复制这样的功能吗?
如果不是,为用户提供类似体验的最佳选择是什么?
谢谢
Good day, I would like to know if there is a way to run a php application within the moodle LMS.
Prior to implementation in php, the information was in the form of static html documents, which were simply uploaded into folder and accessing the files gave the appearance of a site hosted within moodle.
Can such a functionality be replicated using PHP files that require service processing for desired features.
If not what are the best options for giving users a similar experience.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用插件(块或模块)在 Moodle 中开发应用程序。前提是你需要遵循Moodle编程指南来创建插件。
更多详细信息请参见:
http://docs.moodle.org/dev/Modules
http://docs.moodle.org/dev/Blocks
但是,您需要决定是否需要一个 Block 或活动模块,只有看到需求后才能确定。
You can use plugins(Blocks or Module) to develop applications within Moodle. The pre-condition is that you need to follow Moodle programming guidelines to create a plugin.
More details here:
http://docs.moodle.org/dev/Modules
http://docs.moodle.org/dev/Blocks
However, you need to decide whether you need a Block or an Activity Module and it can be determined only after seeing the requirements.