| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/Engineering/V2/plugins/editors/ |
Upload File : |
<?php
/*------------------------------------------------------------------------
# Copyright (C) 2005-2010 WebxSolution Ltd. All Rights Reserved.
# @license - GPLv2.0
# Author: WebxSolution Ltd
# Websites: http://www.webxsolution.com
# Terms of Use: An extension that is derived from the JoomlaCK editor will only be allowed under the following conditions: http://joomlackeditor.com/terms-of-use
# ------------------------------------------------------------------------*/
// Do not allow direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
jimport('joomla.event.plugin');
include('jckeditor/includes/loader.php');
jckimport('ckeditor.htmlwriter.javascript.helper');
/**
* fckeditor Lite for Joomla! WYSIWYG Editor Plugin
*
* @author WebxSolution Ltd <andrew@webxsolution.com>
* @package Editors
* @since 1.5
*/
class plgEditorJCkeditor extends JPlugin {
/**
* Constructor
*
* For php4 compatability we must not use the __constructor as a constructor for plugins
* because func_get_args ( void ) returns a copy of all passed arguments NOT references.
* This causes problems with cross-referencing necessary for the observer design pattern.
*
* @param object $subject The object to observe
* @param array $config An array that holds the plugin configuration
* @since 1.5
*/
function plgEditorCkeditor(& $subject, $config)
{
parent::__construct($subject, $config);
}
/**
* Method to handle the onInitEditor event.
* - Initializes the fckeditor Lite WYSIWYG Editor
*
* @access public
* @return string JavaScript Initialization string
* @since 1.5
*/
function onInit()
{
jckimport('ckeditor.stylesheet.helper');
JCKStylesheetHelper::addCKEDITORHeaderStyles();
jckimport('ckeditor.htmlwriter.javascript');
$javascript = new JCKJavascript(array(),array(JURI::root().'plugins/editors/jckeditor/ckeditor.js'));
return $javascript->toString();
}
/**
* ckditor Lite WYSIWYG Editor - get the editor content
*
* @param string The name of the editor
*/
function onGetContent( $editor ) {
return JCKJavascriptHelper::getContent($editor);
}
/**
* ckeditor Lite WYSIWYG Editor - set the editor content
*
* @param string The name of the editor
*/
function onSetContent( $editor, $html ) {
return JCKJavascriptHelper::setContent($editor, $html );
}
/**
* ckeditor Lite WYSIWYG Editor - copy editor content to form field
*
* @param string The name of the editor
*/
function onSave( $editor ) { /* We do not need to test for anything */ }
/**
* ckeditor Lite WYSIWYG Editor - display the editor
*
* @param string The name of the editor area
* @param string The content of the field
* @param string The name of the form field
* @param string The width of the editor area
* @param string The height of the editor area
* @param int The number of columns for the editor area
* @param int The number of rows for the editor area
* @param mixed Can be boolean or array.
*/
function onDisplay( $name, $content, $width, $height, $col, $row, $buttons = true )
{
// Load modal popup behavior
JHTML::_('behavior.modal', 'a.modal-button');
// initialise $error varable
$errors = '';
/* Generate the Output */
$this->params->set('editorname',$name);
$javascript =& JCKJavascriptHelper::getHeadJavascript($this->params,$errors,$return_script);
$javascript->addToHead();
if(!$return_script)
return;
//Here we will use JFCKJavascript output to screen //html element as well
jckimport('ckeditor.htmlwriter.helper');
return $errors . JCKHtmlwriterHelper::EditorTextArea($name,$content,$buttons);
}
function onGetInsertMethod($name)
{
return JCKJavascriptHelper::addInsertEditorTextMethod($name);
}
}
?>