|
@@ 625-631 (lines=7) @@
|
| 622 |
|
return $form; |
| 623 |
|
}, |
| 624 |
|
|
| 625 |
|
'playgroundgame_mission_game_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 626 |
|
$translator = $sm->get('translator'); |
| 627 |
|
$form = new Form\Admin\MissionGameFieldset(null, $sm, $translator); |
| 628 |
|
$missionGame = new Entity\MissionGame(); |
| 629 |
|
$form->setInputFilter($missionGame->getInputFilter()); |
| 630 |
|
return $form; |
| 631 |
|
}, |
| 632 |
|
|
| 633 |
|
'playgroundgame_game_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 634 |
|
$translator = $sm->get('translator'); |
|
@@ 633-640 (lines=8) @@
|
| 630 |
|
return $form; |
| 631 |
|
}, |
| 632 |
|
|
| 633 |
|
'playgroundgame_game_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 634 |
|
$translator = $sm->get('translator'); |
| 635 |
|
$form = new Form\Admin\Game(null, $sm, $translator); |
| 636 |
|
$game = new Entity\Game(); |
| 637 |
|
$form->setInputFilter($game->getInputFilter()); |
| 638 |
|
|
| 639 |
|
return $form; |
| 640 |
|
}, |
| 641 |
|
|
| 642 |
|
'playgroundgame_register_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 643 |
|
$translator = $sm->get('translator'); |
|
@@ 668-675 (lines=8) @@
|
| 665 |
|
return $form; |
| 666 |
|
}, |
| 667 |
|
|
| 668 |
|
'playgroundgame_lottery_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 669 |
|
$translator = $sm->get('translator'); |
| 670 |
|
$form = new Form\Admin\Lottery(null, $sm, $translator); |
| 671 |
|
$lottery = new Entity\Lottery(); |
| 672 |
|
$form->setInputFilter($lottery->getInputFilter()); |
| 673 |
|
|
| 674 |
|
return $form; |
| 675 |
|
}, |
| 676 |
|
|
| 677 |
|
'playgroundgame_quiz_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 678 |
|
$translator = $sm->get('translator'); |
|
@@ 677-684 (lines=8) @@
|
| 674 |
|
return $form; |
| 675 |
|
}, |
| 676 |
|
|
| 677 |
|
'playgroundgame_quiz_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 678 |
|
$translator = $sm->get('translator'); |
| 679 |
|
$form = new Form\Admin\Quiz(null, $sm, $translator); |
| 680 |
|
$quiz = new Entity\Quiz(); |
| 681 |
|
$form->setInputFilter($quiz->getInputFilter()); |
| 682 |
|
|
| 683 |
|
return $form; |
| 684 |
|
}, |
| 685 |
|
|
| 686 |
|
'playgroundgame_instantwin_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 687 |
|
$translator = $sm->get('translator'); |
|
@@ 686-693 (lines=8) @@
|
| 683 |
|
return $form; |
| 684 |
|
}, |
| 685 |
|
|
| 686 |
|
'playgroundgame_instantwin_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 687 |
|
$translator = $sm->get('translator'); |
| 688 |
|
$form = new Form\Admin\InstantWin(null, $sm, $translator); |
| 689 |
|
$instantwin = new Entity\InstantWin(); |
| 690 |
|
$form->setInputFilter($instantwin->getInputFilter()); |
| 691 |
|
|
| 692 |
|
return $form; |
| 693 |
|
}, |
| 694 |
|
|
| 695 |
|
'playgroundgame_quizquestion_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 696 |
|
$translator = $sm->get('translator'); |
|
@@ 695-702 (lines=8) @@
|
| 692 |
|
return $form; |
| 693 |
|
}, |
| 694 |
|
|
| 695 |
|
'playgroundgame_quizquestion_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 696 |
|
$translator = $sm->get('translator'); |
| 697 |
|
$form = new Form\Admin\QuizQuestion(null, $sm, $translator); |
| 698 |
|
$quizQuestion = new Entity\QuizQuestion(); |
| 699 |
|
$form->setInputFilter($quizQuestion->getInputFilter()); |
| 700 |
|
|
| 701 |
|
return $form; |
| 702 |
|
}, |
| 703 |
|
|
| 704 |
|
'playgroundgame_instantwinoccurrence_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 705 |
|
$translator = $sm->get('translator'); |
|
@@ 704-711 (lines=8) @@
|
| 701 |
|
return $form; |
| 702 |
|
}, |
| 703 |
|
|
| 704 |
|
'playgroundgame_instantwinoccurrence_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 705 |
|
$translator = $sm->get('translator'); |
| 706 |
|
$form = new Form\Admin\InstantWinOccurrence(null, $sm, $translator); |
| 707 |
|
$instantwinOccurrence = new Entity\InstantWinOccurrence(); |
| 708 |
|
$form->setInputFilter($instantwinOccurrence->getInputFilter()); |
| 709 |
|
|
| 710 |
|
return $form; |
| 711 |
|
}, |
| 712 |
|
|
| 713 |
|
'playgroundgame_instantwinoccurrenceimport_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 714 |
|
$translator = $sm->get('translator'); |
|
@@ 727-734 (lines=8) @@
|
| 724 |
|
return $form; |
| 725 |
|
}, |
| 726 |
|
|
| 727 |
|
'playgroundgame_postvote_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 728 |
|
$translator = $sm->get('translator'); |
| 729 |
|
$form = new Form\Admin\PostVote(null, $sm, $translator); |
| 730 |
|
$postVote = new Entity\PostVote(); |
| 731 |
|
$form->setInputFilter($postVote->getInputFilter()); |
| 732 |
|
|
| 733 |
|
return $form; |
| 734 |
|
}, |
| 735 |
|
|
| 736 |
|
'playgroundgame_prizecategory_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 737 |
|
$translator = $sm->get('translator'); |
|
@@ 736-743 (lines=8) @@
|
| 733 |
|
return $form; |
| 734 |
|
}, |
| 735 |
|
|
| 736 |
|
'playgroundgame_prizecategory_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 737 |
|
$translator = $sm->get('translator'); |
| 738 |
|
$form = new Form\Admin\PrizeCategory(null, $sm, $translator); |
| 739 |
|
$prizeCategory = new Entity\PrizeCategory(); |
| 740 |
|
$form->setInputFilter($prizeCategory->getInputFilter()); |
| 741 |
|
|
| 742 |
|
return $form; |
| 743 |
|
}, |
| 744 |
|
|
| 745 |
|
'playgroundgame_prizecategoryuser_form' => function (\Zend\ServiceManager\ServiceManager $sm) { |
| 746 |
|
$translator = $sm->get('translator'); |