JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.6.3
[ckeditor.git] / _samples / php / replace.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 Selected 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 Selected Textarea Elements Using PHP Code\r
15         </h1>\r
16         <div class="description">\r
17         <p>\r
18                 This sample shows how to replace a selected <code>&lt;textarea&gt;</code> element\r
19                 with a CKEditor instance by using PHP code.\r
20         </p>\r
21         <p>\r
22                 To replace a <code>&lt;textarea&gt;</code> element, place the following call at any point\r
23                 after the <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_once "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 a textarea element with an id (or name) of "textarea_id".\r
37 $CKEditor->replace("textarea_id");\r
38 ?&gt;</pre>\r
39         <p>\r
40                 Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of\r
41                 the <code>&lt;textarea&gt;</code> element to be replaced.\r
42         </p>\r
43         </div>\r
44         <!-- This <div> holds alert messages to be display in the sample page. -->\r
45         <div id="alerts">\r
46                 <noscript>\r
47                         <p>\r
48                                 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript\r
49                                 support, like yours, you should still see the contents (HTML data) and you should\r
50                                 be able to edit it normally, without a rich editor interface.\r
51                         </p>\r
52                 </noscript>\r
53         </div>\r
54         <form action="../sample_posteddata.php" method="post">\r
55                 <p>\r
56                         <label for="editor1">\r
57                                 Editor 1:</label>\r
58                         <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
59                 </p>\r
60                 <p>\r
61                         <input type="submit" value="Submit"/>\r
62                 </p>\r
63         </form>\r
64         <div id="footer">\r
65                 <hr />\r
66                 <p>\r
67                         CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>\r
68                 </p>\r
69                 <p id="copy">\r
70                         Copyright &copy; 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico\r
71                         Knabben. All rights reserved.\r
72                 </p>\r
73         </div>\r
74         <?php\r
75         // Include the CKEditor class.\r
76         include_once "../../ckeditor.php";\r
77         // Create a class instance.\r
78         $CKEditor = new CKEditor();\r
79         // Path to the CKEditor directory, ideally use an absolute path instead of a relative dir.\r
80         //   $CKEditor->basePath = '/ckeditor/'\r
81         // If not set, CKEditor will try to detect the correct path.\r
82         $CKEditor->basePath = '../../';\r
83         // Replace a textarea element with an id (or name) of "editor1".\r
84         $CKEditor->replace("editor1");\r
85         ?>\r
86 </body>\r
87 </html>\r