Guest User

Untitled

a guest
Jul 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2.  
  3. class QuestionsPresenter extends BasePresenter
  4. {
  5. public function actionDefault()
  6. {
  7. $questions = array(
  8. 'What is your name?',
  9. 'How old are you?',
  10. 'Where are you from?',
  11. );
  12. $this['questions']->setQuestions($questions);
  13. }
  14.  
  15. protected function createComponentQuestions()
  16. {
  17. return new Questions;
  18. }
  19. }
Add Comment
Please, Sign In to add comment