Advertisement
Guest User

Tx_FETest_Utility_RTEStorage

a guest
Dec 19th, 2011
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.05 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * Storage for RTE
  5.  */
  6. class Tx_FETest_Utility_RTEStorage
  7. {
  8.     /**
  9.      * @var tx_rtehtmlarea_pi2
  10.      */
  11.     public $RTEObj;
  12.  
  13.     public $docLarge = 0;
  14.  
  15.     public $RTEcounter = 0;
  16.  
  17.     public $formName;
  18.  
  19.     /**
  20.      * Initial JavaScript to be printed before the form
  21.      * (should be in head, but cannot due to IE6 timing bug)
  22.      */
  23.     public $additionalJS_initial = '';
  24.  
  25.     /**
  26.      * Additional JavaScript to be printed before the form
  27.      * (works in Mozilla/Firefox when included in head, but not in IE6)
  28.      */
  29.     public $additionalJS_pre = array();
  30.  
  31.     /**
  32.      * Additional JavaScript to be printed after the form
  33.      */
  34.     public $additionalJS_post = array();
  35.  
  36.     /**
  37.      *  Additional JavaScript to be executed on submit
  38.      */
  39.     public $additionalJS_submit = array();
  40.  
  41.     public $PA = array(
  42.         'itemFormElName' =>  '',
  43.         'itemFormElValue' => '',
  44.     );
  45.  
  46.     public $specConf = array(
  47.         'rte_transform' => array(
  48.             'parameters' => array('mode' => 'ts_css')
  49.         )
  50.     );
  51.  
  52.     public $thisConfig = array();
  53.  
  54.     public $RTEtypeVal = 'text';
  55.  
  56.     public $thePidValue;
  57. }
  58.  
  59. # EOF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement