Checkbox
Radio Button
Hyperlink
Image
Date Picker
Rich Text
Decorator Panel
Flow Panel
Dock Panel
Tab Panel
Source Formatter
Upload files
 
License
Team
Google Code
Example
Source Code
<?php 
include_once 'phpmoko/ui/Form/RichTextArea.php';
include_once 
'phpmoko/ui/VerticalPanel.php';

class 
ModuleDemo implements WebModule
{
  function 
getWidget()
  {
    
$vPanel = new VerticalPanel();
    
$vPanel->setWidth("100%");
    
    
$area = new RichTextArea();
    
$area->setWidth("100%");
    
    
$vPanel->add($area);
    
    return 
$vPanel;
  }
}
?>