Error

Class 'DataSetListDropdown' not found

/mnt/data/shnoulle/nginx/www/develop/application/models/Question.php(1041)

1029     
1030     public function getDataSetObject($type = null)
1031     {
1032         $type = $type === null ? $this->type : $type;
1033         LoadQuestionTypes::load($type);
1034 
1035         switch ($type) {
1036             case Question::QT_X_BOILERPLATE_QUESTION:           return new DataSetBoilerplate($this->qid);
1037             case Question::QT_5_POINT_CHOICE:                   return new DataSetFivePointChoice($this->qid);
1038             case Question::QT_ASTERISK_EQUATION:                return new DataSetEquation($this->qid);
1039             case Question::QT_D_DATE:                           return new DataSetDate($this->qid);
1040             case Question::QT_1_ARRAY_MULTISCALE:               return new DataSetArrayMultiscale($this->qid);
1041             case Question::QT_L_LIST_DROPDOWN:                  return new DataSetListDropdown($this->qid);
1042             case Question::QT_EXCLAMATION_LIST_DROPDOWN:        return new DataSetListRadio($this->qid);
1043             case Question::QT_O_LIST_WITH_COMMENT:              return new DataSetListWithComment($this->qid);
1044             case Question::QT_R_RANKING_STYLE:                  return new RenderRanking($aFieldArray);
1045             case Question::QT_M_MULTIPLE_CHOICE:                return new DataSetMultipleChoice($this->qid);
1046             case Question::QT_P_MULTIPLE_CHOICE_WITH_COMMENTS:  return new DataSetMultipleChoiceWithComments($this->qid);
1047             case Question::QT_I_LANGUAGE:                       return new DataSetLanguage($this->qid);
1048             case Question::QT_Q_MULTIPLE_SHORT_TEXT:            return new DataSetMultipleShortText($this->qid);
1049             case Question::QT_T_LONG_FREE_TEXT:                 return new DataSetLongFreeText($this->qid);
1050             case Question::QT_U_HUGE_FREE_TEXT:                 return new DataSetHugeFreeText($this->qid);
1051             case Question::QT_K_MULTIPLE_NUMERICAL_QUESTION:    return new RenderMultipleNumerical($aFieldArray);
1052             case Question::QT_A_ARRAY_5_CHOICE_QUESTIONS:       return new DataSetArray5ChoiceQuestion($this->qid);
1053             case Question::QT_B_ARRAY_10_CHOICE_QUESTIONS:      return new DataSetArray10ChoiceQuestion($this->qid);

Stack Trace

#0
+
 /mnt/data/shnoulle/nginx/www/develop/application/controllers/admin/questionedit.php(284): Question->getDataSetObject()
279     }
280     
281     public function getGeneralOptions($iQuestionId, $sQuestionType=null, $returnArray = false)
282     {
283         $oQuestion = $this->_getQuestionObject($iQuestionId, $sQuestionType);
284         $aGeneralOptionsArray = $oQuestion->getDataSetObject()->getGeneralSettingsArray($oQuestion->qid, $sQuestionType);
285 
286         if( $returnArray === true ) {
287             return $aGeneralOptionsArray;
288         }
289 
#3
+
 /mnt/data/shnoulle/nginx/www/develop/application/core/Survey_Common_Action.php(83): CAction->runWithParamsInternal(questionedit, ReflectionMethod, array("r" => "admin/questioneditor/sid/471658/gid/4/sa/getGeneralOptions", "YII_CSRF_TOKEN" => "d0NEbmZ2ZmNJX25fczZHYmdqNnFkSHRnWW1aX2w0bVqawdU0DvGLc1UfikEwRw4p...", "iQuestionId" => "6", "sQuestionType" => "L", ...))
78             $oMethod = new ReflectionMethod($this, $sDefault);
79         }
80 
81         // We're all good to go, let's execute it
82         // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params
83         return parent::runWithParamsInternal($this, $oMethod, $params);
84     }
85 
86     /**
87      * Some functions have different parameters, which are just an alias of the
88      * usual parameters we're getting in the url. This function just populates
#7
+
 /mnt/data/shnoulle/nginx/www/develop/application/controllers/AdminController.php(158): CController->run("questioneditor")
153                     $this->redirect(array('/admin/authentication/sa/login'));
154                 }
155             }
156         }
157 
158         return parent::run($action);
159     }
160 
161     /**
162      * Routes all the actions to their respective places
163      *
2019-05-07 14:32:06 nginx/1.14.2 Yii Framework/1.1.21