CuteEditor for PHP 6.1 Class Library

Editor.DisableItemList Property

The toolbar items needed to be disabled going to this string. Example DisableItemList="Bold, New, Delete"


Example Code

<?php
         $editor=new CuteEditor();
         $editor->ID="Editor1";
         $editor->Text="Type here";
         $editor->FilesPath="CuteEditor_Files";
         $editor->DisableItemList="Bold, New, Delete";
         $editor->Draw();
         $editor=null; 

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

See Also

Editor Class | CuteEditor Namespace