2 /***************************************************************
5 * (c) 2010 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 * Copy as Plain Text extension for htmlArea RTE
27 * @author Stanislas Rolland <typo3(arobas)sjbr.ca>
29 * TYPO3 SVN ID: $Id: class.tx_rtehtmlarea_plaintext.php 7838 2010-06-08 16:10:41Z stan $
32 class tx_rtehtmlarea_plaintext
extends tx_rtehtmlarea_api
{
33 protected $extensionKey = 'rtehtmlarea'; // The key of the extension that is extending htmlArea RTE
34 protected $pluginName = 'PlainText'; // The name of the plugin registered by the extension
35 protected $relativePathToLocallangFile = ''; // Path to this main locallang file of the extension relative to the extension dir.
36 protected $relativePathToSkin = 'extensions/PlainText/skin/htmlarea.css'; // Path to the skin (css) file relative to the extension dir
37 protected $htmlAreaRTE; // Reference to the invoking object
38 protected $thisConfig; // Reference to RTE PageTSConfig
39 protected $toolbar; // Reference to RTE toolbar array
40 protected $LOCAL_LANG; // Frontend language array
41 protected $pluginButtons = 'pastetoggle,pastebehaviour';
42 protected $convertToolbarForHtmlAreaArray = array (
43 'pastetoggle' => 'PasteToggle',
44 'pastebehaviour' => 'PasteBehaviour',
46 public function main ($parentObject) {
47 // Opera has no onPaste event to handle
48 return parent
::main($parentObject) && $this->htmlAreaRTE
->client
['browser'] != 'opera';
51 * Return JS configuration of the htmlArea plugins registered by the extension
53 * @param integer Relative id of the RTE editing area in the form
55 * @return string JS configuration for registered plugins
57 * The returned string will be a set of JS instructions defining the configuration that will be provided to the plugin(s)
58 * Each of the instructions should be of the form:
59 * RTEarea['.$RTEcounter.']["buttons"]["button-id"]["property"] = "value";
61 public function buildJavascriptConfiguration($RTEcounter) {
62 $registerRTEinJavascriptString = '';
63 $button = 'pastebehaviour';
64 // Get current TYPO3 User Setting, if available
65 if (TYPO3_MODE
=== 'BE' && t3lib_extMgm
::isLoaded('setup') && is_array($GLOBALS['TYPO3_USER_SETTINGS']) && is_object($GLOBALS['BE_USER'])) {
66 if (!is_array($this->thisConfig
['buttons.']) ||
!is_array($this->thisConfig
['buttons.'][$button.'.'])) {
67 $registerRTEinJavascriptString .= '
68 RTEarea[' . $RTEcounter . '].buttons.' . $button . ' = new Object();';
70 $registerRTEinJavascriptString .= '
71 RTEarea[' . $RTEcounter . '].buttons.' . $button . '.current = "' . (isset($GLOBALS['BE_USER']->uc
['rteCleanPasteBehaviour']) ?
$GLOBALS['BE_USER']->uc
['rteCleanPasteBehaviour'] : 'plainText') . '";';
73 return $registerRTEinJavascriptString;
76 * Return an updated array of toolbar enabled buttons
78 * @param array $show: array of toolbar elements that will be enabled, unless modified here
80 * @return array toolbar button array, possibly updated
82 public function applyToolbarConstraints ($show) {
83 $removeButtons = array();
84 // Remove pastebehaviour button if pastetoggle is not configured
85 if (!in_array('pastetoggle', $show)) {
86 $removeButtons[] = 'pastebehaviour';
88 // Remove pastebehaviour button if TYPO3 User Settings are available
89 if (TYPO3_MODE
=== 'BE' && t3lib_extMgm
::isLoaded('setup') && is_array($GLOBALS['TYPO3_USER_SETTINGS']) && is_object($GLOBALS['BE_USER'])) {
90 $removeButtons[] = 'pastebehaviour';
92 return array_diff($show, $removeButtons);
95 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['ext/rtehtmlarea/extensions/PlainText/class.tx_rtehtmlarea_plaintext.php']) {
96 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['ext/rtehtmlarea/extensions/PlainText/class.tx_rtehtmlarea_plaintext.php']);