Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * Storage for RTE
- */
- class Tx_FETest_Utility_RTEStorage
- {
- /**
- * @var tx_rtehtmlarea_pi2
- */
- public $RTEObj;
- public $docLarge = 0;
- public $RTEcounter = 0;
- public $formName;
- /**
- * Initial JavaScript to be printed before the form
- * (should be in head, but cannot due to IE6 timing bug)
- */
- public $additionalJS_initial = '';
- /**
- * Additional JavaScript to be printed before the form
- * (works in Mozilla/Firefox when included in head, but not in IE6)
- */
- public $additionalJS_pre = array();
- /**
- * Additional JavaScript to be printed after the form
- */
- public $additionalJS_post = array();
- /**
- * Additional JavaScript to be executed on submit
- */
- public $additionalJS_submit = array();
- public $PA = array(
- 'itemFormElName' => '',
- 'itemFormElValue' => '',
- );
- public $specConf = array(
- 'rte_transform' => array(
- 'parameters' => array('mode' => 'ts_css')
- )
- );
- public $thisConfig = array();
- public $RTEtypeVal = 'text';
- public $thePidValue;
- }
- # EOF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement