replaceall.php 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <!--
  3. Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
  4. For licensing, see LICENSE.html or http://ckeditor.com/license
  5. -->
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <title>Replace All Textarea Elements &mdash; CKEditor Sample</title>
  9. <meta content="text/html; charset=utf-8" http-equiv="content-type"/>
  10. <link href="../sample.css" rel="stylesheet" type="text/css"/>
  11. </head>
  12. <body>
  13. <h1 class="samples">
  14. CKEditor Sample &mdash; Replace All Textarea Elements Using PHP Code
  15. </h1>
  16. <div class="description">
  17. <p>
  18. This sample shows how to replace all <code>&lt;textarea&gt;</code> elements
  19. with CKEditor by using PHP code.
  20. </p>
  21. <p>
  22. To replace all <code>&lt;textarea&gt;</code> elements, place the following call at any point
  23. after the last <code>&lt;textarea&gt;</code> element:
  24. </p>
  25. <pre class="samples">
  26. &lt;?php
  27. // Include the CKEditor class.
  28. include("ckeditor/ckeditor.php");
  29. // Create a class instance.
  30. $CKEditor = new CKEditor();
  31. // Path to the CKEditor directory.
  32. $CKEditor->basePath = '/ckeditor/';
  33. // Replace all textarea elements with CKEditor.
  34. $CKEditor->replaceAll();
  35. ?&gt;</pre>
  36. </div>
  37. <!-- This <div> holds alert messages to be displayed in the sample page. -->
  38. <div id="alerts">
  39. <noscript>
  40. <p>
  41. <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
  42. support, like yours, you should still see the contents (HTML data) and you should
  43. be able to edit it normally, without a rich editor interface.
  44. </p>
  45. </noscript>
  46. </div>
  47. <form action="../sample_posteddata.php" method="post">
  48. <p>
  49. <label for="editor1">
  50. Editor 1:</label>
  51. <textarea cols="80" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
  52. </p>
  53. <p>
  54. <label for="editor2">
  55. Editor 2:</label>
  56. <textarea cols="80" id="editor2" name="editor2" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
  57. </p>
  58. <p>
  59. <input type="submit" value="Submit"/>
  60. </p>
  61. </form>
  62. <div id="footer">
  63. <hr />
  64. <p>
  65. CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
  66. </p>
  67. <p id="copy">
  68. Copyright &copy; 2003-2011, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
  69. Knabben. All rights reserved.
  70. </p>
  71. </div>
  72. <?php
  73. // Include the CKEditor class.
  74. include("../../ckeditor.php");
  75. // Create a class instance.
  76. $CKEditor = new CKEditor();
  77. // Path to the CKEditor directory, ideally use an absolute path instead of a relative dir.
  78. // $CKEditor->basePath = '/ckeditor/'
  79. // If not set, CKEditor will try to detect the correct path.
  80. $CKEditor->basePath = '../../';
  81. // Replace all textarea elements with CKEditor.
  82. $CKEditor->replaceAll();
  83. ?>
  84. </body>
  85. </html>