X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_samples%2Fphp%2Fevents.php;h=044b096b2f885e602a12c7f5eaec1b6a73f722c5;hb=3fe9cac293e090ea459a3ee10d78cbe9e1dd0e03;hp=583e05e1fa811e86e3641d1ca19d444b767cc039;hpb=941b0a9ba4e673e292510d80a5a86806994b8ea6;p=ckeditor.git diff --git a/_samples/php/events.php b/_samples/php/events.php index 583e05e..044b096 100644 --- a/_samples/php/events.php +++ b/_samples/php/events.php @@ -1,18 +1,48 @@ - Sample - CKEditor + Adding Event Handlers — CKEditor Sample -

- CKEditor Sample +

+ CKEditor Sample — Adding Event Handlers

+
+

+ This sample shows how to add event handlers to CKEditor with PHP. +

+

+ A snippet of the configuration code can be seen below; check the source code of this page for + the full definition: +

+
<?php
+// Include the CKEditor class.
+include("ckeditor/ckeditor.php");
+
+// Create a class instance.
+$CKEditor = new CKEditor();
+
+// Path to the CKEditor directory.
+$CKEditor->basePath = '/ckeditor/';
+
+// The initial value to be displayed in the editor.
+$initialValue = 'This is some sample text.';
+
+// Add event handler, instanceReady is fired when editor is loaded.
+$CKEditor->addEventHandler('instanceReady', 'function (evt) {
+	alert("Loaded editor: " + evt.editor.name);
+}');
+
+// Create an editor instance.
+$CKEditor->editor("editor1", $initialValue);
+
+
- -
- Output -
-

-
-

+ + addGlobalEventHandler('dialogDefinition', $function); } -// Include CKEditor class. +// Include the CKEditor class. include("../../ckeditor.php"); -// Create class instance. +// Create a class instance. $CKEditor = new CKEditor(); -// Set configuration option for all editors. +// Set a configuration option for all editors. $CKEditor->config['width'] = 750; -// Path to CKEditor directory, ideally instead of relative dir, use an absolute path: +// Path to the CKEditor directory, ideally use an absolute path instead of a relative dir. // $CKEditor->basePath = '/ckeditor/' // If not set, CKEditor will try to detect the correct path. $CKEditor->basePath = '../../'; @@ -83,18 +108,17 @@ $CKEditor->addEventHandler('instanceReady', 'function (evt) { alert("Loaded editor: " + evt.editor.name); }'); -// Create first instance. +// Create the first instance. $CKEditor->editor("editor1", $initialValue); -// Clear event handlers, instances that will be created later will not have +// Clear event handlers. Instances that will be created later will not have // the 'instanceReady' listener defined a couple of lines above. $CKEditor->clearEventHandlers(); ?> -

-
-

+
+ editor("editor2", $initialValue, $config, $events); ?> - -

-
-
+

+ +

+