TYPO3 CMS  TYPO3_6-2
BlockStyle.php
Go to the documentation of this file.
1 <?php
3 
22 
23  protected $extensionKey = 'rtehtmlarea';
24 
25  // The key of the extension that is extending htmlArea RTE
26  protected $pluginName = 'BlockStyle';
27 
28  // The name of the plugin registered by the extension
29  protected $relativePathToLocallangFile = 'extensions/BlockStyle/locallang.xlf';
30 
31  // Path to this main locallang file of the extension relative to the extension dir.
32  protected $relativePathToSkin = '';
33 
34  // Path to the skin (css) file relative to the extension dir.
35  protected $htmlAreaRTE;
36 
37  // Reference to the invoking object
38  protected $thisConfig;
39 
40  // Reference to RTE PageTSConfig
41  protected $toolbar;
42 
43  // Reference to RTE toolbar array
44  protected $LOCAL_LANG;
45 
46  // Frontend language array
47  protected $pluginButtons = 'blockstyle';
48 
49  // The comma-separated list of button names that the extension id adding to the htmlArea RTE tollbar
50  protected $pluginLabels = 'blockstylelabel';
51 
52  // The comma-separated list of label names that the extension id adding to the htmlArea RTE tollbar
53  // The name-converting array, converting the button names used in the RTE PageTSConfing to the button id's used by the JS scripts
55  'blockstylelabel' => 'I[Block style label]',
56  'blockstyle' => 'BlockStyle'
57  );
58 
60 
61 }