HosipLan

Untitled

Sep 26th, 2012
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3. class WebPageGeneratorForm extends Nette\Application\UI\Form
  4. {
  5.  
  6.     public function __construct()
  7.     {
  8.         parent::__construct();
  9.  
  10.         $body = $this->addContainer("body");
  11.         $bg = $body->addContainer("background");
  12.         $bg->currentGroup = $this->addGroup("foo", FALSE);
  13.         $bg->addText("color", "Background color:");
  14.         $bg->addText("position", "Background position:", $backgroundPosition);
  15.         $bg->addSelect("repeat", "Background repeat:");
  16.         $bg->addUpload("image", "Background image:");
  17.  
  18.         // ...
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment