| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
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-2010, 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>Sample - CKEditor</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> 14 CKEditor Sample 15 </h1> 16 <!-- This <div> holds alert messages to be display in the sample page. --> 17 <div id="alerts"> 18 <noscript> 19 <p> 20 <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript 21 support, like yours, you should still see the contents (HTML data) and you should 22 be able to edit it normally, without a rich editor interface. 23 </p> 24 </noscript> 25 </div> 26 <!-- This <fieldset> holds the HTML that you will usually find in your pages. --> 27 <fieldset title="Output"> 28 <legend>Output</legend> 29 <form action="../sample_posteddata.php" method="post"> 30 <p> 31 <label for="editor1"> 32 Editor 1:</label><br/> 33 </p> 34 <p> 35 <?php 36 // Include CKEditor class. 37 include_once "../../ckeditor.php"; 38 // The initial value to be displayed in the editor. 39 $initialValue = '<p>This is some <strong>sample text</strong>.</p>'; 40 // Create class instance. 41 $CKEditor = new CKEditor(); 42 // Path to CKEditor directory, ideally instead of relative dir, use an absolute path: 43 // $CKEditor->basePath = '/ckeditor/' 44 // If not set, CKEditor will try to detect the correct path. 45 $CKEditor->basePath = '../../'; 46 // Create textarea element and attach CKEditor to it. 47 $CKEditor->editor("editor1", $initialValue); 48 ?> 49 <input type="submit" value="Submit"/> 50 </p> 51 </form> 52 </fieldset> 53 <div id="footer"> 54 <hr /> 55 <p> 56 CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a> 57 </p> 58 <p id="copy"> 59 Copyright © 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico 60 Knabben. All rights reserved. 61 </p> 62 </div> 63 </body> 64 </html>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Mar 24 11:18:33 2011 | Cross-referenced by PHPXref 0.7 |