TYPO3 CMS  TYPO3_7-6
Typo3Image.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
20 
25 {
31  protected $pluginName = 'TYPO3Image';
32 
38  protected $pluginButtons = 'image';
39 
46  'image' => 'InsertImage'
47  ];
48 
55  public function main(array $configuration)
56  {
57  // Check if this should be enabled based on extension configuration and Page TSConfig
58  // The 'Minimal' and 'Typical' default configurations include Page TSConfig that removes images on the way to the database
59  return parent::main($configuration)
60  && !(
61  $this->configuration['thisConfig']['proc.']['entryHTMLparser_db.']['tags.']['img.']['allowedAttribs'] == '0'
62  && $this->configuration['thisConfig']['proc.']['entryHTMLparser_db.']['tags.']['img.']['rmTagIfNoAttrib'] == '1'
63  )
64  && !$this->configuration['thisConfig']['buttons.']['image.']['TYPO3Browser.']['disabled'];
65  }
66 
72  public function buildJavascriptConfiguration()
73  {
74  $jsArray = [];
75  $button = 'image';
76  if (in_array($button, $this->toolbar)) {
77  if (!is_array($this->configuration['thisConfig']['buttons.']) || !is_array($this->configuration['thisConfig']['buttons.'][$button . '.'])) {
78  $jsArray[] = 'RTEarea[editornumber]["buttons"]["' . $button . '"] = new Object();';
79  }
80  $jsArray[] = 'RTEarea[editornumber].buttons.' . $button . '.pathImageModule = ' . GeneralUtility::quoteJSvalue(BackendUtility::getModuleUrl('rtehtmlarea_wizard_select_image')) . ';';
81  }
82  return implode(LF, $jsArray);
83  }
84 }