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