JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.1
[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-2010, 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>Sample - CKEditor</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>\r
14                 CKEditor Sample\r
15         </h1>\r
16         <!-- This <div> holds alert messages to be display in the sample page. -->\r
17         <div id="alerts">\r
18                 <noscript>\r
19                         <p>\r
20                                 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript\r
21                                 support, like yours, you should still see the contents (HTML data) and you should\r
22                                 be able to edit it normally, without a rich editor interface.\r
23                         </p>\r
24                 </noscript>\r
25         </div>\r
26         <!-- This <fieldset> holds the HTML that you will usually find in your pages. -->\r
27         <fieldset title="Output">\r
28                 <legend>Output</legend>\r
29                 <form action="../sample_posteddata.php" method="post">\r
30                         <p>\r
31                                 <label for="editor1">\r
32                                         Editor 1:</label><br/>\r
33                                 <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
34                         </p>\r
35                         <p>\r
36                                 <label for="editor2">\r
37                                         Editor 2:</label><br/>\r
38                                 <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
39                         </p>\r
40                         <p>\r
41                                 <input type="submit" value="Submit"/>\r
42                         </p>\r
43                 </form>\r
44         </fieldset>\r
45         <div id="footer">\r
46                 <hr />\r
47                 <p>\r
48                         CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>\r
49                 </p>\r
50                 <p id="copy">\r
51                         Copyright &copy; 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico\r
52                         Knabben. All rights reserved.\r
53                 </p>\r
54         </div>\r
55         <?php\r
56         // Include CKEditor class.\r
57         include("../../ckeditor.php");\r
58         // Create class instance.\r
59         $CKEditor = new CKEditor();\r
60         // Path to CKEditor directory, ideally instead of relative dir, use an absolute path:\r
61         //   $CKEditor->basePath = '/ckeditor/'\r
62         // If not set, CKEditor will try to detect the correct path.\r
63         $CKEditor->basePath = '../../';\r
64         // Replace all textareas with CKEditor.\r
65         $CKEditor->replaceAll();\r
66         ?>\r
67 </body>\r
68 </html>\r