1fcf0ca8a5
dirname() is a slow function compared with __DIR__ and using '/../'. Moodle has a large number of legacy files that are included each time a page loads and is not able to use an autoloader as it is functional code. This allows those required includes to perform as best as possible in this situation.
90 lines
3.3 KiB
PHP
90 lines
3.3 KiB
PHP
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle 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 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle 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.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Displays the TinyMCE popup window to insert a Moodle emoticon
|
|
*
|
|
* @package tinymce_moodleemoticon
|
|
* @copyright 2010 David Mudrak <david@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
define('NO_MOODLE_COOKIES', true); // Session not used here.
|
|
|
|
require(__DIR__ . '/../../../../../config.php');
|
|
|
|
$PAGE->set_context(context_system::instance());
|
|
$PAGE->set_url('/lib/editor/tinymce/plugins/moodleemoticon/dialog.php');
|
|
|
|
$emoticonmanager = get_emoticon_manager();
|
|
$stringmanager = get_string_manager();
|
|
|
|
$editor = get_texteditor('tinymce');
|
|
$plugin = $editor->get_plugin('moodleemoticon');
|
|
|
|
$htmllang = get_html_lang();
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
header('X-UA-Compatible: IE=edge');
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html <?php echo $htmllang ?>
|
|
<head>
|
|
<title><?php print_string('moodleemoticon:desc', 'tinymce_moodleemoticon'); ?></title>
|
|
<script type="text/javascript" src="<?php echo $editor->get_tinymce_base_url(); ?>/tiny_mce_popup.js"></script>
|
|
<script type="text/javascript" src="<?php echo $plugin->get_tinymce_file_url('js/dialog.js'); ?>"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<table border="0" align="center" style="width:100%;">
|
|
<?php
|
|
|
|
$emoticons = $emoticonmanager->get_emoticons();
|
|
// This is tricky - we must somehow include the information about the original
|
|
// emoticon text so that we can replace the image back with it on editor save.
|
|
// so we are going to encode the index of the emoticon. this will break when the
|
|
// admin changes the mapping table while the user has the editor opened
|
|
// but I am not able to come with better solution at the moment :-/
|
|
$index = 0;
|
|
foreach ($emoticons as $emoticon) {
|
|
$txt = $emoticon->text;
|
|
$img = $OUTPUT->render(
|
|
$emoticonmanager->prepare_renderable_emoticon($emoticon, array('class' => 'emoticon emoticon-index-'.$index)));
|
|
if ($stringmanager->string_exists($emoticon->altidentifier, $emoticon->altcomponent)) {
|
|
$alt = get_string($emoticon->altidentifier, $emoticon->altcomponent);
|
|
} else {
|
|
$alt = '';
|
|
}
|
|
echo html_writer::tag('tr',
|
|
html_writer::tag('td', $img, array('style' => 'width:20%;text-align:center;')) .
|
|
html_writer::tag('td', s($txt), array('style' => 'width:40%;text-align:center;font-family:monospace;')) .
|
|
html_writer::tag('td', $alt),
|
|
array(
|
|
'class' => 'emoticoninfo emoticoninfo-index-'.$index,
|
|
)
|
|
);
|
|
$index++;
|
|
}
|
|
|
|
?>
|
|
</table>
|
|
|
|
<div class="mceActionPanel">
|
|
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|