這裏的formslib Moodle的文檔:如何使用formslib更改MOODLE中的默認編輯器值?
$mform->addElement('editor', 'fieldname', get_string('labeltext', 'langfile'));
這應該是第4個屬性參數:
array(
'subdirs'=>0,
'maxbytes'=>0,
'maxfiles'=>0,
'changeformat'=>0,
'context'=>null,
'noclean'=>0,
'trusttext'=>0);
)
我想:
$mform->addElement('editor', 'fieldname', get_string('labeltext', 'langfile'), array('context'=>'test"));
,但不起作用。有任何想法嗎?