contributions/text.html/lib/interfaces/irichtexteditor.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * An Interface for richt text editor implementations 00004 */ 00005 interface IRichtTextEditor { 00006 /** 00007 * Apply it 00008 * 00009 * @param PageData $page_data 00010 * @param string $name Name of editor, can be found as class "rte_$name" on HTML textareas 00011 */ 00012 public function apply(PageData $page_data, $name); 00013 }