/**
  * Posts a new question  throu the question form
  *
  * @return type
  */
 public function actionCreate()
 {
     $poll = new Poll();
     $poll->question = Yii::$app->request->post('question');
     $poll->answersText = Yii::$app->request->post('answersText');
     $poll->allow_multiple = Yii::$app->request->post('allowMultiple', 0);
     return \humhub\modules\polls\widgets\WallCreateForm::create($poll);
 }