CuteEditor for PHP 6.1 Class Library

Editor.ConfigurationPath Property

Specifies the path which contains XML file (*.config). The XML file defines the toolbar appearance. Developers can use this property to specify the path of custom configuration files.


Example Code

<?php
         $editor=new CuteEditor();
         $editor->ID="Editor1";
         $editor->Text="Type here";
         $editor->FilesPath="CuteEditor_Files";
         $editor->ConfigurationPath="/PHP/CuteEditor_Files/Configuration/myTools.config";
         $editor->Draw();
         $editor=null; 

         //use $_POST["Editor1"]to catch the data
?>

See Also

Editor Class | CuteEditor Namespace