2 /***************************************************************
5 * (c) 2008 Stanislas Rolland <typo3(arobas)sjbr.ca>
8 * This script is part of the Typo3 project. The Typo3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
17 * This script is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * This copyright notice MUST APPEAR in all copies of the script!
23 ***************************************************************/
25 * About Editor plugin for htmlArea RTE
27 * @author Stanislas Rolland <typo3(arobas)sjbr.ca>
33 require_once(t3lib_extMgm
::extPath('rtehtmlarea').'class.tx_rtehtmlareaapi.php');
35 class tx_rtehtmlarea_contextmenu
extends tx_rtehtmlareaapi
{
37 protected $extensionKey = 'rtehtmlarea'; // The key of the extension that is extending htmlArea RTE
38 protected $pluginName = 'ContextMenu'; // The name of the plugin registered by the extension
39 protected $relativePathToLocallangFile = ''; // Path to this main locallang file of the extension relative to the extension dir.
40 protected $relativePathToSkin = ''; // Path to the skin (css) file relative to the extension dir.
41 protected $htmlAreaRTE; // Reference to the invoking object
42 protected $thisConfig; // Reference to RTE PageTSConfig
43 protected $toolbar; // Reference to RTE toolbar array
44 protected $LOCAL_LANG; // Frontend language array
46 protected $pluginButtons;
47 protected $convertToolbarForHtmlAreaArray = array ();
49 public function main($parentObject) {
50 return parent
::main($parentObject) && !($this->htmlAreaRTE
->client
['BROWSER'] == 'opera' ||
$this->thisConfig
['disableContextMenu'] ||
$this->thisConfig
['disableRightClick']);
54 * Return JS configuration of the htmlArea plugins registered by the extension
56 * @param integer Relative id of the RTE editing area in the form
58 * @return string JS configuration for registered plugins
60 * The returned string will be a set of JS instructions defining the configuration that will be provided to the plugin(s)
61 * Each of the instructions should be of the form:
62 * RTEarea['.$RTEcounter.']["buttons"]["button-id"]["property"] = "value";
64 public function buildJavascriptConfiguration($RTEcounter) {
65 $registerRTEinJavascriptString = '';
66 return $registerRTEinJavascriptString;
71 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['ext/rtehtmlarea/extensions/ContextMenu/class.tx_rtehtmlarea_contextmenu.php']) {
72 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['ext/rtehtmlarea/extensions/ContextMenu/class.tx_rtehtmlarea_contextmenu.php']);