|
<?php include_once 'phpmoko/ui/HTML.php'; include_once 'phpmoko/ui/Hyperlink.php'; include_once 'phpmoko/ui/VerticalPanel.php';
class ModuleDemo implements WebModule { function getWidget() { $vPanel = new VerticalPanel(); $vPanel->add(new HTML('<b>Choose a section:</b>')); $vPanel->setSpacing(5); // Add a hyper link to each section in the Widgets category $allConstants = array('Checkbox', 'Radio Button', 'File Upload', 'Date Picker'); $allUrls = array('demos-checkbox.html', 'demos-radiobutton.html', 'demos-uploadfiles.html', 'demos-datepicker.html'); for ($i = 0; $i < sizeof($allConstants); $i++) $vPanel->add(new Hyperlink($allConstants[$i], $allUrls[$i])); return $vPanel; } } ?>
|
|