71 lines
3.1 KiB
PHP
71 lines
3.1 KiB
PHP
<?php
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// //
|
|
// NOTICE OF COPYRIGHT //
|
|
// //
|
|
// Moodle - Modular Object-Oriented Dynamic Learning Environment //
|
|
// http://moodle.org //
|
|
// //
|
|
// Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com //
|
|
// //
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
// it under the terms of the GNU General Public License as published by //
|
|
// the Free Software Foundation; either version 2 of the License, or //
|
|
// (at your option) any later version. //
|
|
// //
|
|
// This program is distributed in the hope that it will be useful, //
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
// GNU General Public License for more details: //
|
|
// //
|
|
// http://www.gnu.org/copyleft/gpl.html //
|
|
// //
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
class tinymce_texteditor extends texteditor {
|
|
public function supported_by_browser() {
|
|
if (check_browser_version('MSIE', 5.5)) {
|
|
return true;
|
|
} else if (check_browser_version('Gecko', 20030516)) {
|
|
return true;
|
|
} else if (check_browser_version('Safari', 3)) {
|
|
return true;
|
|
} else if (check_browser_version('Opera', 9)) {
|
|
return true;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public function get_supported_formats() {
|
|
return array(FORMAT_HTML => FORMAT_HTML);
|
|
}
|
|
|
|
public function get_preferred_format() {
|
|
return FORMAT_HTML;
|
|
}
|
|
|
|
public function supports_repositories() {
|
|
return true;
|
|
}
|
|
|
|
public function get_editor_element_class() {
|
|
return 'form-tinymce-advanced';
|
|
}
|
|
|
|
public function get_legacy_textarea_class() {
|
|
return 'form-tinymce-legacy';
|
|
}
|
|
|
|
public function header_js() {
|
|
global $CFG;
|
|
|
|
$usehttps = (int)($CFG->httpswwwroot === $CFG->wwwroot); //hmm, is there a better test?
|
|
|
|
$js = '<script type="text/javascript" src="'.$CFG->httpswwwroot.'/lib/editor/tinymce/tiny_mce_src.js"></script>'."\n".
|
|
'<script type="text/javascript" src="'.$CFG->httpswwwroot.'/lib/editor/tinymce/extra/tinymce.js.php?elanguage='.current_language().'&etheme='.current_theme().'&eusehttps='.$usehttps.'"></script>'."\n";
|
|
return $js;
|
|
}
|
|
|
|
} |