Current Directory: /home/astoriaah/www/old15/administrator/components/com_widgetkit/helpers
Viewing File: /home/astoriaah/www/old15/administrator/components/com_widgetkit/helpers/editor.php
<?php
/**
* @package Widgetkit
* @author YOOtheme http://www.yootheme.com
* @copyright Copyright (C) YOOtheme GmbH
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL
*/
jimport('joomla.html.editor');
/*
Class: EditorWidgetkitHelper
Editor helper class, to integrate the Joomla Editor Plugins.
*/
class EditorWidgetkitHelper extends WidgetkitHelper {
/*
Function: init
Init System Editor
Mixed
*/
public function init() {
if (is_a($this['system']->document ,'JDocumentRAW')) {
return;
}
$editor = JFactory::getConfig()->get('editor');
if (in_array(strtolower($editor), array('tinymce', 'jce', 'jckeditor', 'codemirror'))) {
JEditorWidgetkit::getInstance($editor)->_loadEditor();
if ($editor == 'codemirror') {
JHtml::_('script', 'media/editors/codemirror/js/closetag.js', false, false, false, false);
JHtml::_('script', 'media/editors/codemirror/js/xml.js', false, false, false, false);
JHtml::_('script', 'media/editors/codemirror/js/css.js', false, false, false, false);
JHtml::_('script', 'media/editors/codemirror/js/javascript.js', false, false, false, false);
JHtml::_('script', 'media/editors/codemirror/js/htmlmixed.js', false, false, false, false);
}
}
if ($editor == 'jckeditor') {
$plugin = JPluginHelper::getPlugin('editors', 'jckeditor');
$plugin->params->set('returnScript',false);
JEditorWidgetkit::getInstance('jckeditor')->display('text', '', '100%', '120', 10, 5,false);
}
}
}
/*
Class: JEditorWidgetkit
Custom editor class. Just to have _loadEditor() as public method
*/
class JEditorWidgetkit extends JEditor {
/*
Function: init
Returns the global Editor object, only creating it if it doesn't already exist.
Parameters:
String $editor - The editor to use.
Returns:
JEditorWidgetkit Obj
*/
public static function getInstance($editor = 'none') {
static $instances;
if (!isset ($instances)) {
$instances = array ();
}
$signature = serialize($editor);
if (empty ($instances[$signature])) {
$instances[$signature] = new JEditorWidgetkit($editor);
}
return $instances[$signature];
}
/*
Function: _loadEditor
Load the editor
Parameters:
Array $config - Associative array of editor config paramaters.
Returns:
Mixed
*/
public function _loadEditor($config = array()) {
return parent::_loadEditor($config);
}
}