2 namespace TYPO3\CMS\Rtehtmlarea\Extension;
56 'gecko' => array(
'copy',
'cut',
'paste'),
57 'webkit' => array(
'copy',
'cut',
'paste'),
58 'opera' => array(
'copy',
'cut',
'paste')
69 $enabled = parent::main($configuration);
71 if ($enabled && is_array($this->hideButtonsFromClient[$this->configuration[
'client'][
'browser']])) {
72 $this->pluginButtons = implode(
',', array_diff(
GeneralUtility::trimExplode(
',', $this->pluginButtons,
true), $this->hideButtonsFromClient[$this->configuration[
'client'][
'browser']]));
75 $this->pluginAddsButtons =
false;
88 if (is_array($this->hideButtonsFromClient[$this->configuration[
'client'][
'browser']])) {
89 return array_diff($show, $this->hideButtonsFromClient[$this->configuration[
'client'][
'browser']]);