HosipLan

Untitled

Sep 11th, 2012
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. class presenter
  2. {
  3.     function createComponentMyForm()
  4.     {
  5.         return new FormControl;
  6.     }
  7. }
  8.  
  9. class MyFormControl extends UI\Control
  10. {
  11.     function createComponentForm()
  12.     {
  13.         $form = new UI\Form;
  14.         $form->addText(...);
  15.         return $form;
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment