コード例 #1
0
 public function create_rating($survey_id = null, $question_id = null)
 {
     $this->tinymce = true;
     $survey = self::load_survey($survey_id);
     $question = self::load_question($survey, $question_id);
     for ($i = 1; $i <= 10; $i++) {
         $option = new SurveyQuestionOption();
         $option->question = $question;
         $option->survey_question_id = $question->id;
         $option->value = $i;
         $option->save();
     }
     Site::Flash("notice", "The options have been created");
     Redirect("admin/surveys/{$survey->id}/questions/{$question->id}#options");
 }