fckeditor.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. function FCKeditor_IsCompatibleBrowser()
  3. {
  4. if ( isset( $_SERVER ) ) {
  5. $sAgent = $_SERVER['HTTP_USER_AGENT'] ;
  6. }
  7. else {
  8. global $HTTP_SERVER_VARS ;
  9. if ( isset( $HTTP_SERVER_VARS ) ) {
  10. $sAgent = $HTTP_SERVER_VARS['HTTP_USER_AGENT'] ;
  11. }
  12. else {
  13. global $HTTP_USER_AGENT ;
  14. $sAgent = $HTTP_USER_AGENT ;
  15. }
  16. }
  17. if ( strpos($sAgent, 'MSIE') !== false && strpos($sAgent, 'mac') === false && strpos($sAgent, 'Opera') === false )
  18. {
  19. $iVersion = (float)substr($sAgent, strpos($sAgent, 'MSIE') + 5, 3) ;
  20. return ($iVersion >= 5.5) ;
  21. }
  22. else if ( strpos($sAgent, 'Gecko/') !== false )
  23. {
  24. $iVersion = (int)substr($sAgent, strpos($sAgent, 'Gecko/') + 6, 8) ;
  25. return ($iVersion >= 20030210) ;
  26. }
  27. else if ( strpos($sAgent, 'Opera/') !== false )
  28. {
  29. $fVersion = (float)substr($sAgent, strpos($sAgent, 'Opera/') + 6, 4) ;
  30. return ($fVersion >= 9.5) ;
  31. }
  32. else if ( preg_match( "|AppleWebKit/(\d+)|i", $sAgent, $matches ) )
  33. {
  34. $iVersion = $matches[1] ;
  35. return ( $matches[1] >= 522 ) ;
  36. }
  37. else
  38. return false ;
  39. }
  40. class FCKeditor
  41. {
  42. var $InstanceName ;
  43. var $BasePath ;
  44. var $Width ;
  45. var $Height ;
  46. var $ToolbarSet ;
  47. var $Value ;
  48. var $Config ;
  49. function __construct( $instanceName )
  50. {
  51. $this->InstanceName = $instanceName ;
  52. $this->BasePath = '/editor/' ;
  53. $this->Width = '100%' ;
  54. $this->Height = '350' ;
  55. $this->ToolbarSet = 'Default' ;
  56. $this->Value = '' ;
  57. $this->Config = array() ;
  58. }
  59. function FCKeditor($instanceName)
  60. {
  61. $this->__construct($instanceName);
  62. }
  63. function Create()
  64. {
  65. echo $this->CreateHtml() ;
  66. }
  67. function CreateHtml()
  68. {
  69. $HtmlValue = htmlspecialchars( $this->Value ) ;
  70. $Html = '' ;
  71. if ( $this->IsCompatible() )
  72. {
  73. $File = 'fckeditor.html' ;
  74. $Link = "{$this->BasePath}editor/{$File}?InstanceName={$this->InstanceName}" ;
  75. if ( $this->ToolbarSet != '' )
  76. $Link .= "&amp;Toolbar={$this->ToolbarSet}" ;
  77. // Render the linked hidden field.
  78. $Html .= "<input type=\"hidden\" id=\"{$this->InstanceName}\" name=\"{$this->InstanceName}\" value=\"{$HtmlValue}\" style=\"display:none\" />" ;
  79. // Render the configurations hidden field.
  80. $Html .= "<input type=\"hidden\" id=\"{$this->InstanceName}___Config\" value=\"" . $this->GetConfigFieldString() . "\" style=\"display:none\" />" ;
  81. // Render the editor IFRAME.
  82. $Html .= "<iframe id=\"{$this->InstanceName}___Frame\" src=\"{$Link}\" width=\"{$this->Width}\" height=\"{$this->Height}\" frameborder=\"0\" scrolling=\"no\"></iframe>" ;
  83. }
  84. else
  85. {
  86. if ( strpos( $this->Width, '%' ) === false )
  87. $WidthCSS = $this->Width . 'px' ;
  88. else
  89. $WidthCSS = $this->Width ;
  90. if ( strpos( $this->Height, '%' ) === false )
  91. $HeightCSS = $this->Height . 'px' ;
  92. else
  93. $HeightCSS = $this->Height ;
  94. $Html .= "<textarea name=\"{$this->InstanceName}\" rows=\"4\" cols=\"40\" style=\"width: {$WidthCSS}; height: {$HeightCSS}\">{$HtmlValue}</textarea>" ;
  95. }
  96. return $Html ;
  97. }
  98. function IsCompatible()
  99. {
  100. return FCKeditor_IsCompatibleBrowser() ;
  101. }
  102. function GetConfigFieldString()
  103. {
  104. $sParams = '' ;
  105. $bFirst = true ;
  106. foreach ( $this->Config as $sKey => $sValue )
  107. {
  108. if ( $bFirst == false )
  109. $sParams .= '&amp;' ;
  110. else
  111. $bFirst = false ;
  112. if ( $sValue === true )
  113. $sParams .= $this->EncodeConfig( $sKey ) . '=true' ;
  114. else if ( $sValue === false )
  115. $sParams .= $this->EncodeConfig( $sKey ) . '=false' ;
  116. else
  117. $sParams .= $this->EncodeConfig( $sKey ) . '=' . $this->EncodeConfig( $sValue ) ;
  118. }
  119. return $sParams ;
  120. }
  121. function EncodeConfig( $valueToEncode )
  122. {
  123. $chars = array(
  124. '&' => '%26',
  125. '=' => '%3D',
  126. '"' => '%22' ) ;
  127. return strtr( $valueToEncode, $chars ) ;
  128. }
  129. }
  130. ?>