/typo3/sysext/rtehtmlarea/extensions/DefaultClean/class.tx_rtehtmlarea_defaultclean.php

https://github.com/itag/TYPO3v4-Core · PHP · 93 lines · 38 code · 8 blank · 47 comment · 7 complexity · f481d524550fb5e739b351cd54cc7879 MD5 · raw file

  1. <?php
  2. /***************************************************************
  3. * Copyright notice
  4. *
  5. * (c) 2008-2011 Stanislas Rolland <typo3(arobas)sjbr.ca>
  6. * All rights reserved
  7. *
  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.
  13. *
  14. * The GNU General Public License can be found at
  15. * http://www.gnu.org/copyleft/gpl.html.
  16. *
  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.
  21. *
  22. * This copyright notice MUST APPEAR in all copies of the script!
  23. ***************************************************************/
  24. /**
  25. * Default Clean extension for htmlArea RTE
  26. *
  27. * @author Stanislas Rolland <typo3(arobas)sjbr.ca>
  28. *
  29. */
  30. class tx_rtehtmlarea_defaultclean extends tx_rtehtmlarea_api {
  31. protected $extensionKey = 'rtehtmlarea'; // The key of the extension that is extending htmlArea RTE
  32. protected $pluginName = 'DefaultClean'; // The name of the plugin registered by the extension
  33. protected $relativePathToLocallangFile = ''; // Path to this main locallang file of the extension relative to the extension dir.
  34. protected $relativePathToSkin = ''; // Path to the skin (css) file relative to the extension dir
  35. protected $htmlAreaRTE; // Reference to the invoking object
  36. protected $thisConfig; // Reference to RTE PageTSConfig
  37. protected $toolbar; // Reference to RTE toolbar array
  38. protected $LOCAL_LANG; // Frontend language array
  39. protected $pluginButtons = 'cleanword';
  40. protected $convertToolbarForHtmlAreaArray = array (
  41. 'cleanword' => 'CleanWord',
  42. );
  43. public function main($parentObject) {
  44. return parent::main($parentObject) && $this->thisConfig['enableWordClean'] && !is_array($this->thisConfig['enableWordClean.']['HTMLparser.']);
  45. }
  46. /**
  47. * Return JS configuration of the htmlArea plugins registered by the extension
  48. *
  49. * @param integer Relative id of the RTE editing area in the form
  50. *
  51. * @return string JS configuration for registered plugins, in this case, JS configuration of block elements
  52. *
  53. * The returned string will be a set of JS instructions defining the configuration that will be provided to the plugin(s)
  54. * Each of the instructions should be of the form:
  55. * RTEarea['.$RTEcounter.']["buttons"]["button-id"]["property"] = "value";
  56. */
  57. public function buildJavascriptConfiguration($RTEcounter) {
  58. $registerRTEinJavascriptString = '';
  59. $button = 'cleanword';
  60. if (in_array($button, $this->toolbar)) {
  61. if (!is_array( $this->thisConfig['buttons.']) || !is_array( $this->thisConfig['buttons.'][$button.'.'])) {
  62. $registerRTEinJavascriptString .= '
  63. RTEarea['.$RTEcounter.'].buttons.'. $button .' = new Object();';
  64. }
  65. $registerRTEinJavascriptString .= '
  66. RTEarea['.$RTEcounter.'].buttons.'. $button .' = {"hotKey" : "' . ($this->thisConfig['enableWordClean.']['hotKey'] ? $this->thisConfig['enableWordClean.']['hotKey'] : '0') . '"};';
  67. }
  68. return $registerRTEinJavascriptString;
  69. }
  70. /**
  71. * Return an updated array of toolbar enabled buttons
  72. * Force inclusion of hidden button cleanword
  73. *
  74. * @param array $show: array of toolbar elements that will be enabled, unless modified here
  75. *
  76. * @return array toolbar button array, possibly updated
  77. */
  78. public function applyToolbarConstraints($show) {
  79. return array_unique(array_merge($show, t3lib_div::trimExplode(',', $this->pluginButtons)));
  80. }
  81. } // end of class
  82. if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['ext/rtehtmlarea/extensions/DefaultClean/class.tx_rtehtmlarea_defaultclean.php'])) {
  83. include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['ext/rtehtmlarea/extensions/DefaultClean/class.tx_rtehtmlarea_defaultclean.php']);
  84. }
  85. ?>