dongwei7245 2013-04-27 17:52
浏览 147
已采纳

Moodle模块MYMODULE没有定义标准功能

I am developing a module for Moodle. I've achieve to install and instantiate it in a course. The problem is that, in "edit mode" enabled, moodle me out the following message:

The module mymodule does not define the standard capability mod/mymodule:addinstance

    line 3451 of \course\lib.php: call to debugging()
    line 1899 of \course\lib.php: call to course_allowed_module()
    line 1767 of \course\lib.php: call to get_module_metadata()
    line 682 of \course\formatenderer.php: call to print_section_add_menus()
    line 49 of \course\format\weeks\format.php: call to format_section_renderer_base->print_multiple_section_page()
    line 276 of \course\view.php: call to require()

In /mod/mymodule/db/access.php file I have the following code:

defined('MOODLE_INTERNAL') || die();

$capabilities = array(
    'mod/mymodule:view' => array(
        'captype' => 'read',
        'contextlevel' => CONTEXT_MODULE,
        'legacy' => array(
            'guest' => CAP_ALLOW,
            'student' => CAP_ALLOW,
            'teacher' => CAP_ALLOW,
            'editingteacher' => CAP_ALLOW,
            'admin' => CAP_ALLOW
        )
    ),

    'mod/mymodule:submit' => array(
        'riskbitmask' => RISK_SPAM,
        'captype' => 'write',
        'contextlevel' => CONTEXT_MODULE,
        'legacy' => array(
            'student' => CAP_ALLOW
        )
    ),
);

I am a beginner in module development for Moodle. I have read the following documentation:

But I have not clarified anything.

EDITED 2013-04-28

I have added this code to my access.php file ($capabilities array):

'mod/mymodule:myaddinstance' => array(
                'captype' => 'write',
                'contextlevel' => CONTEXT_SYSTEM,
                'archetypes' => array(
                        'user' => CAP_ALLOW
                ),

                'clonepermissionsfrom' => 'moodle/my:manageblocks'
        ),

        'mod/mymodule:addinstance' => array(
                'riskbitmask' => RISK_SPAM | RISK_XSS,

                'captype' => 'write',
                'contextlevel' => CONTEXT_MODULE,
                'archetypes' => array(
                        'editingteacher' => CAP_ALLOW,
                        'manager' => CAP_ALLOW
                ),

                'clonepermissionsfrom' => 'moodle/site:manageblocks'
        ),

But it doesn't works.

  • 写回答

1条回答 默认 最新

  • dongzhimeng2464 2013-04-28 08:56
    关注

    At first it seemed like a strange error message, since it mentions mod/mymodule:addinstance but you don't have that in your code. But on closer inspection, that seems to be the problem - moodle expects you to define addinstance but you don't!

    This is apparently a new behavior from 2.4 onwards: http://docs.moodle.org/dev/Blocks#db.2Faccess.php

    The solution seems to be to add addinstance (and possibly myaddinstance, depending on your settings and implementation) to your $capabilities array.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 安装svn网络有问题怎么办
  • ¥15 Python爬取指定微博话题下的内容,保存为txt
  • ¥15 vue2登录调用后端接口如何实现
  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥15 latex怎么处理论文引理引用参考文献