MDL-21240 more migration to html_writer
This commit is contained in:
+2
-10
@@ -907,7 +907,8 @@ class required_js extends linked_requirement {
|
||||
}
|
||||
|
||||
public function get_html() {
|
||||
return ajax_get_link_to_script($this->url);
|
||||
$attributes = array('type'=>'text/javascript', 'src'=>$this->url);
|
||||
return html_writer::tag('script', $attributes, '') . "\n";
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1276,15 +1277,6 @@ class required_event_handler extends required_js_code {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the HTML required to link to a JavaScript file.
|
||||
* @param $url the URL of a JavaScript file.
|
||||
* @return string the required HTML.
|
||||
*/
|
||||
function ajax_get_link_to_script($url) {
|
||||
return '<script type="text/javascript" src="' . $url . '"></script>' . "\n";
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Returns whether ajax is enabled/allowed or not.
|
||||
|
||||
+2
-1
@@ -2076,7 +2076,8 @@ function file_modify_html_header($text) {
|
||||
$ufo = '';
|
||||
if (filter_is_enabled('filter/mediaplugin')) {
|
||||
// this script is needed by most media filter plugins.
|
||||
$ufo = ajax_get_link_to_script($CFG->wwwroot . '/lib/ufo.js');
|
||||
$attributes = array('type'=>'text/javascript', 'src'=>$CFG->httpswwwroot . '/lib/ufo.js');
|
||||
$ufo = html_writer::tag('script', $attributes, '') . "\n";
|
||||
}
|
||||
|
||||
preg_match('/\<head\>|\<HEAD\>/', $text, $matches);
|
||||
|
||||
Reference in New Issue
Block a user