%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/src/Chamilo/CoreBundle/Component/Editor/TinyMce/ |
| Current File : /home/tjamichg/cursos.tjamich.gob.mx/src/Chamilo/CoreBundle/Component/Editor/TinyMce/TinyMce.php |
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Component\Editor\TinyMce;
use Chamilo\CoreBundle\Component\Editor\Editor;
/**
* Class TinyMce.
*
* @package Chamilo\CoreBundle\Component\Editor\TinyMce
*/
class TinyMce extends Editor
{
/**
* Set js to be include in the template.
*/
public function setJavascriptToInclude()
{
$jsFolder = api_get_path(WEB_LIBRARY_JS_PATH);
$this->template->addResource($jsFolder.'tinymce/tinymce.min.js', 'js');
}
/**
* @return string
*/
public function getEditorTemplate()
{
return 'javascript/editor/tinymce/elfinder.tpl';
}
/**
* Return the HTML code required to run editor.
*
* @return string
*/
public function createHtml()
{
$html = '<textarea id="'.$this->name.'" name="'.$this->name.'" class="ckeditor" >'.$this->value.'</textarea>';
$html .= $this->editorReplace();
return $html;
}
/**
* @return string
*/
public function editorReplace()
{
$toolbar = new Toolbar\Basic($this->urlGenerator, $this->toolbarSet, $this->config, 'TinyMce');
$toolbar->setLanguage($this->getLocale());
$config = $toolbar->getConfig();
$config['selector'] = "#".$this->name;
$javascript = $this->toJavascript($config);
$javascript = str_replace('"elFinderBrowser"', "elFinderBrowser", $javascript);
$html = "<script>
function elFinderBrowser (field_name, url, type, win) {
tinymce.activeEditor.windowManager.open({
file: '".$this->urlGenerator->generate('filemanager')."',
title: 'elFinder 2.0',
width: 900,
height: 450,
resizable: 'yes'
}, {
setUrl: function (url) {
win.document.getElementById(field_name).value = url;
}
});
return false;
}
$(document).ready(function() {
tinymce.init(
$javascript
);
});
</script>";
return $html;
}
}