Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class presenter
- {
- function createComponentMyForm()
- {
- return new FormControl;
- }
- }
- class MyFormControl extends UI\Control
- {
- function createComponentForm()
- {
- $form = new UI\Form;
- $form->addText(...);
- return $form;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment