Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Sep 23, 2021
2 parents 0b3110a + 57be7e3 commit 063a4b7
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion application/helpers/export_helper.php
Expand Up @@ -454,7 +454,6 @@ function SPSSFieldMap($iSurveyID, $prefix = 'V', $sLanguage = '')
Question::QT_U_HUGE_FREE_TEXT => array('name' => 'Huge Free Text', 'size' => 1, 'SPSStype' => 'A'),
Question::QT_I_LANGUAGE => array('name' => 'Language Switch', 'size' => 2, 'SPSStype' => 'A'),
Question::QT_EXCLAMATION_LIST_DROPDOWN => array('name' => 'List (Dropdown)', 'size' => 1, 'SPSStype' => 'F'),
Question::QT_Z_LIST_RADIO_FLEXIBLE => array('name' => 'List (Flexible Labels) (Radio)', 'size' => 1, 'SPSStype' => 'F'),
Question::QT_L_LIST => array('name' => 'List (Radio)', 'size' => 1, 'SPSStype' => 'F'),
Question::QT_O_LIST_WITH_COMMENT => array('name' => 'List With Comment', 'size' => 1, 'SPSStype' => 'F'),
Question::QT_T_LONG_FREE_TEXT => array('name' => 'Long free text', 'size' => 1, 'SPSStype' => 'A'),
Expand Down
3 changes: 0 additions & 3 deletions application/models/Question.php
Expand Up @@ -72,7 +72,6 @@ class Question extends LSActiveRecord
const QT_U_HUGE_FREE_TEXT = 'U';
const QT_X_BOILERPLATE_QUESTION = 'X';
const QT_Y_YES_NO_RADIO = 'Y';
const QT_Z_LIST_RADIO_FLEXIBLE = 'Z';
const QT_EXCLAMATION_LIST_DROPDOWN = '!';
const QT_VERTICAL_FILE_UPLOAD = '|';
const QT_ASTERISK_EQUATION = '*';
Expand Down Expand Up @@ -628,8 +627,6 @@ public static function getQuestionClass($sType)
return 'boilerplate';
case Question::QT_Y_YES_NO_RADIO:
return 'yes-no';
case Question::QT_Z_LIST_RADIO_FLEXIBLE:
return 'list-radio-flexible';
case Question::QT_EXCLAMATION_LIST_DROPDOWN:
return 'list-dropdown';
case Question::QT_COLON_ARRAY_MULTI_FLEX_NUMBERS:
Expand Down
1 change: 0 additions & 1 deletion application/models/QuestionType.php
Expand Up @@ -40,7 +40,6 @@ class QuestionType extends StaticModel
const QT_U_HUGE_FREE_TEXT = 'U';
const QT_X_BOILERPLATE_QUESTION = 'X';
const QT_Y_YES_NO_RADIO = 'Y';
const QT_Z_LIST_RADIO_FLEXIBLE = 'Z';
const QT_EXCLAMATION_LIST_DROPDOWN = '!';
const QT_VERTICAL_FILE_UPLOAD = '|';
const QT_ASTERISK_EQUATION = '*';
Expand Down

0 comments on commit 063a4b7

Please sign in to comment.