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