PluginProbe
Contact Forms by Cimatti / 1.3.7
Contact Forms by Cimatti v1.3.7
2.3.6 2.3.5 2.3.0 2.2.32 2.2.4 2.2.0 2.1.2 2.1.1 trunk 1.0 1.1 1.2 1.2.1 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 All 62 releases
contact-forms / PFBC / Resources / ckeditor / ckeditor.php

ckeditor.php in Contact Forms by Cimatti 1.3.7, at PFBC/Resources/ckeditor/ckeditor.php

30 lines 962 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
4 * For licensing, see LICENSE.html or http://ckeditor.com/license
5 */
6
7 /*! \mainpage CKEditor - PHP server side intergation
8 * \section intro_sec CKEditor
9 * Visit <a href="http://ckeditor.com">CKEditor web site</a> to find more information about the editor.
10 * \section install_sec Installation
11 * \subsection step1 Include ckeditor.php in your PHP web site.
12 * @code
13 * <?php
14 * include("ckeditor/ckeditor.php");
15 * ?>
16 * @endcode
17 * \subsection step2 Create CKEditor class instance and use one of available methods to insert CKEditor.
18 * @code
19 * <?php
20 * $CKEditor = new CKEditor();
21 * echo $CKEditor->textarea("field1", "<p>Initial value.</p>");
22 * ?>
23 * @endcode
24 */
25
26 if ( !function_exists('version_compare') || version_compare( phpversion(), '5', '<' ) )
27 include_once( 'ckeditor_php4.php' ) ;
28 else
29 include_once( 'ckeditor_php5.php' ) ;
30