Changeset 1578
- Timestamp:
- 2008-02-21 10:45:48 (5 months ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 2 modified
-
fckeditor_php4.php (modified) (13 diffs)
-
fckeditor_php5.php (modified) (13 diffs)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/fckeditor_php4.php
r1577 r1578 29 29 { 30 30 /** 31 * Name of the FCKeditor instance 31 * Name of the FCKeditor instance. 32 32 * 33 33 * @access protected … … 36 36 var $InstanceName ; 37 37 /** 38 * Path to FCKeditor relative to the document root 38 * Path to FCKeditor relative to the document root. 39 39 * 40 40 * @var string … … 42 42 var $BasePath ; 43 43 /** 44 * Width of the FCKeditor 44 * Width of the FCKeditor. 45 45 * Examples: 100%, 600 46 46 * … … 49 49 var $Width ; 50 50 /** 51 * Height of the FCKeditor 51 * Height of the FCKeditor. 52 52 * Examples: 400, 50% 53 53 * … … 56 56 var $Height ; 57 57 /** 58 * Name of the toolbar to load 58 * Name of the toolbar to load. 59 59 * 60 60 * @var string … … 62 62 var $ToolbarSet ; 63 63 /** 64 * Initial value 64 * Initial value. 65 65 * 66 66 * @var string … … 68 68 var $Value ; 69 69 /** 70 * This is where additional configuration can be passed 70 * This is where additional configuration can be passed. 71 71 * Example: 72 72 * $oFCKeditor->Config['EnterMode'] = 'br'; … … 77 77 78 78 /** 79 * Main Constructor 79 * Main Constructor. 80 80 * Refer to the _samples/php directory for examples. 81 81 * … … 95 95 96 96 /** 97 * Display FCKeditor 97 * Display FCKeditor. 98 98 * 99 99 */ … … 104 104 105 105 /** 106 * Return the HTML code required to run FCKeditor 106 * Return the HTML code required to run FCKeditor. 107 107 * 108 108 * @return string … … 159 159 160 160 /** 161 * Returns true if browser is compatible with FCKeditor 161 * Returns true if browser is compatible with FCKeditor. 162 162 * 163 163 * @return boolean … … 169 169 170 170 /** 171 * Get settings from Config array as a single string 171 * Get settings from Config array as a single string. 172 172 * 173 173 * @access protected … … 199 199 /** 200 200 * Encode characters that may break the configuration string 201 * generated by GetConfigFieldString() 201 * generated by GetConfigFieldString(). 202 202 * 203 203 * @access protected -
FCKeditor/trunk/fckeditor_php5.php
r1577 r1578 29 29 { 30 30 /** 31 * Name of the FCKeditor instance 31 * Name of the FCKeditor instance. 32 32 * 33 33 * @access protected … … 36 36 public $InstanceName ; 37 37 /** 38 * Path to FCKeditor relative to the document root 38 * Path to FCKeditor relative to the document root. 39 39 * 40 40 * @var string … … 42 42 public $BasePath ; 43 43 /** 44 * Width of the FCKeditor 44 * Width of the FCKeditor. 45 45 * Examples: 100%, 600 46 46 * … … 49 49 public $Width ; 50 50 /** 51 * Height of the FCKeditor 51 * Height of the FCKeditor. 52 52 * Examples: 400, 50% 53 53 * … … 56 56 public $Height ; 57 57 /** 58 * Name of the toolbar to load 58 * Name of the toolbar to load. 59 59 * 60 60 * @var string … … 62 62 public $ToolbarSet ; 63 63 /** 64 * Initial value 64 * Initial value. 65 65 * 66 66 * @var string … … 68 68 public $Value ; 69 69 /** 70 * This is where additional configuration can be passed 70 * This is where additional configuration can be passed. 71 71 * Example: 72 72 * $oFCKeditor->Config['EnterMode'] = 'br'; … … 77 77 78 78 /** 79 * Main Constructor 79 * Main Constructor. 80 80 * Refer to the _samples/php directory for examples. 81 81 * … … 95 95 96 96 /** 97 * Display FCKeditor 97 * Display FCKeditor. 98 98 * 99 99 */ … … 104 104 105 105 /** 106 * Return the HTML code required to run FCKeditor 106 * Return the HTML code required to run FCKeditor. 107 107 * 108 108 * @return string … … 154 154 155 155 /** 156 * Returns true if browser is compatible with FCKeditor 156 * Returns true if browser is compatible with FCKeditor. 157 157 * 158 158 * @return boolean … … 164 164 165 165 /** 166 * Get settings from Config array as a single string 166 * Get settings from Config array as a single string. 167 167 * 168 168 * @access protected … … 194 194 /** 195 195 * Encode characters that may break the configuration string 196 * generated by GetConfigFieldString() 196 * generated by GetConfigFieldString(). 197 197 * 198 198 * @access protected