Summernote is a JavaScript library that helps you create WYSIWYG editors online.
You can customize the features of summernote similar to other plugin by passing attribute as parameters. You can set $config["preventXSS"] = false to save data in html format.
Please note that we have removed the image upload feature of summernote to prevent issue related to our image uploading.
$pdocrud = new PDOCrud(); $pdocrud->addPlugin("summernote");//to add plugin $pdocrud->fieldCssClass("product_description", array("summernote")); echo $pdocrud->dbTable("products")->render("insertform"); echo $pdocrud->loadPluginJsCode("summernote",".summernote");//to add plugin call on textarea with class .summernote