Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private $foo;
- public function injectFoo(Foo $foo)
- {
- $this->foo = $foo;
- }
- protected function createComponentBlabla()
- {
- $form = new UI\Form;
- $form->addSelect('bla', 'alb')
- ->setItems($this->foo->fetchPairs('id', 'name'))
- return $form;
- }
Advertisement
Add Comment
Please, Sign In to add comment