| [ 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 <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> 34 </p> 35 <p> 36 <input type="submit" value="Submit"/> 37 </p> 38 </form> 39 </fieldset> 40 <div id="footer"> 41 <hr /> 42 <p> 43 CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a> 44 </p> 45 <p id="copy"> 46 Copyright © 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico 47 Knabben. All rights reserved. 48 </p> 49 </div> 50 <?php 51 // Include CKEditor class. 52 include_once "../../ckeditor.php"; 53 // Create class instance. 54 $CKEditor = new CKEditor(); 55 // Path to CKEditor directory, ideally instead of relative dir, use an absolute path: 56 // $CKEditor->basePath = '/ckeditor/' 57 // If not set, CKEditor will try to detect the correct path. 58 $CKEditor->basePath = '../../'; 59 // Replace textarea with id (or name) "editor1". 60 $CKEditor->replace("editor1"); 61 ?> 62 </body> 63 </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 |