TYPO3 API  SVNRelease
class.tx_rtehtmlarea_typo3color.php
Go to the documentation of this file.
00001 <?php
00002 /***************************************************************
00003 *  Copyright notice
00004 *
00005 *  (c) 2008-2011 Stanislas Rolland <typo3(arobas)sjbr.ca>
00006 *  All rights reserved
00007 *
00008 *  This script is part of the Typo3 project. The Typo3 project is
00009 *  free software; you can redistribute it and/or modify
00010 *  it under the terms of the GNU General Public License as published by
00011 *  the Free Software Foundation; either version 2 of the License, or
00012 *  (at your option) any later version.
00013 *
00014 *  The GNU General Public License can be found at
00015 *  http://www.gnu.org/copyleft/gpl.html.
00016 *
00017 *  This script is distributed in the hope that it will be useful,
00018 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00019 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00020 *  GNU General Public License for more details.
00021 *
00022 *  This copyright notice MUST APPEAR in all copies of the script!
00023 ***************************************************************/
00024 /**
00025  * TYPO3 Color plugin for htmlArea RTE
00026  *
00027  * @author Stanislas Rolland <typo3(arobas)sjbr.ca>
00028  *
00029  * TYPO3 SVN ID: $Id: class.tx_rtehtmlarea_typo3color.php 10120 2011-01-18 20:03:36Z ohader $
00030  *
00031  */
00032 class tx_rtehtmlarea_typo3color extends tx_rtehtmlarea_api {
00033 
00034     protected $extensionKey = 'rtehtmlarea';    // The key of the extension that is extending htmlArea RTE
00035     protected $pluginName = 'TYPO3Color';   // The name of the plugin registered by the extension
00036     protected $relativePathToLocallangFile = 'extensions/TYPO3Color/locallang.xml'; // Path to this main locallang file of the extension relative to the extension dir.
00037     protected $relativePathToSkin = 'extensions/TYPO3Color/skin/htmlarea.css';      // Path to the skin (css) file relative to the extension dir.
00038     protected $htmlAreaRTE;             // Reference to the invoking object
00039     protected $thisConfig;              // Reference to RTE PageTSConfig
00040     protected $toolbar;             // Reference to RTE toolbar array
00041     protected $LOCAL_LANG;              // Frontend language array
00042 
00043     protected $pluginButtons = 'textcolor,bgcolor';
00044     protected $convertToolbarForHtmlAreaArray = array (
00045         'textcolor'     => 'ForeColor',
00046         'bgcolor'       => 'HiliteColor',
00047         );
00048 
00049     public function main($parentObject) {
00050         return parent::main($parentObject) && $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['rtehtmlarea']['allowStyleAttribute'];
00051     }
00052 
00053     /**
00054      * Return JS configuration of the htmlArea plugins registered by the extension
00055      *
00056      * @param   integer     Relative id of the RTE editing area in the form
00057      *
00058      * @return string       JS configuration for registered plugins
00059      *
00060      * The returned string will be a set of JS instructions defining the configuration that will be provided to the plugin(s)
00061      * Each of the instructions should be of the form:
00062      *  RTEarea['.$RTEcounter.']["buttons"]["button-id"]["property"] = "value";
00063      */
00064     public function buildJavascriptConfiguration($RTEcounter) {
00065 
00066             // Process colors configuration
00067         $registerRTEinJavascriptString = $this->buildJSColorsConfig($RTEcounter);
00068 
00069         return $registerRTEinJavascriptString;
00070     }
00071 
00072     /**
00073      * Return Javascript configuration of colors
00074      *
00075      * @param   integer     $RTEcounter: The index number of the current RTE editing area within the form.
00076      *
00077      * @return  string      Javascript configuration of colors
00078      */
00079     function buildJSColorsConfig($RTEcounter) {
00080         if ($this->htmlAreaRTE->is_FE()) {
00081             $RTEProperties = $this->htmlAreaRTE->RTEsetup;
00082         } else {
00083             $RTEProperties = $this->htmlAreaRTE->RTEsetup['properties'];
00084         }
00085         $configureRTEInJavascriptString = '';
00086         $configureRTEInJavascriptString .= '
00087             RTEarea['.$RTEcounter.'].disableColorPicker = ' . (trim($this->thisConfig['disableColorPicker']) ? 'true' : 'false') . ';';
00088             // Building the array of configured colors
00089         if (is_array($RTEProperties['colors.']) )  {
00090             $HTMLAreaColorname = array();
00091             foreach ($RTEProperties['colors.'] as $colorName => $conf) {
00092                 $colorName = substr($colorName, 0, -1);
00093                 $colorLabel = $this->htmlAreaRTE->getPageConfigLabel($conf['name'], 0);
00094                 $HTMLAreaColorname[$colorName] = array($colorLabel, strtoupper(substr($conf['value'], 1, 6)));
00095             }
00096         }
00097             // Setting the list of colors if specified in the RTE config
00098         if ($this->thisConfig['colors']) {
00099             $HTMLAreaColors = t3lib_div::trimExplode(',' , $this->htmlAreaRTE->cleanList($this->thisConfig['colors']));
00100             $HTMLAreaJSColors = array();
00101             foreach ($HTMLAreaColors as $colorName) {
00102                 if ($HTMLAreaColorname[$colorName]) {
00103                     $HTMLAreaJSColors[] = $HTMLAreaColorname[$colorName];
00104                 }
00105             }
00106             if ($this->htmlAreaRTE->is_FE()) {
00107                 $GLOBALS['TSFE']->csConvObj->convArray($HTMLAreaJSColors, $this->htmlAreaRTE->OutputCharset, 'utf-8');
00108             } else {
00109                 $GLOBALS['LANG']->csConvObj->convArray($HTMLAreaJSColors, $GLOBALS['LANG']->charSet, 'utf-8');
00110             }
00111             $configureRTEInJavascriptString .= '
00112             RTEarea['.$RTEcounter.'].colors = ' . json_encode($HTMLAreaJSColors) . ';';
00113         }
00114         return $configureRTEInJavascriptString;
00115     }
00116 }
00117 if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['ext/rtehtmlarea/extensions/TYPO3Color/class.tx_rtehtmlarea_typo3color.php'])) {
00118     include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['ext/rtehtmlarea/extensions/TYPO3Color/class.tx_rtehtmlarea_typo3color.php']);
00119 }
00120 ?>