ページにJavaScriptを含めようとしているmoodleブロックプラグインがあります。
どのように試しても、js_init_callによって呼び出されたjavascriptは、実行する代わりに常にエラーをスローします。完全な配列をjs_init_callに渡そうとしました。また、ファイルがmodule.jsと呼ばれることを前提とした省略形を試しました。
javascriptファイルが存在しない場合、ファイルが見つからないことを訴えるmoodleエラーが発生します。存在する場合は、上記のようにjavascriptエラーが発生します。私は何が間違っているのですか?
block_foo.php:
<?php
class block_foo extends block_base {
public function init() {
$this->title = get_string('foo', 'block_foo');
}
public function applicable_formats(){
return array('course-view' => true);
}
public function get_content() {
global $PAGE;
if ($this->content !== null) {
return $this->content;
}
if(!isloggedin()){
//if(!is_enrolled()){
return false;
}
$this->content = new stdClass;
$this->content->text = 'asdf';
$this->content->footer = '';
$jsmodule = array(
'name' => 'block_foo',
'fullpath' => '/blocks/foo/foo.js',
'requires' => array(),
'strings' => array()
);
$PAGE->requires->js_init_call('M.block_foo.init', null, false, $jsmodule);
//This style of call doesn't work either... (if the js is named module.js)
//$PAGE->requires->js_init_call('M.block_foo.init', null);
return $this->content;
}
function hide_header(){
return true;
}
}
module.jsまたはfoo.js:
M.block_foo = {};
M.block_foo.init = function(){
alert("I was called, yay");
$var = 1234;
$var = $var + 3;
};