Skip to content

Instantly share code, notes, and snippets.

@zmousm
Created September 20, 2017 16:01
Show Gist options
  • Save zmousm/744b6abb518a4f52d41d34d8eb51d16f to your computer and use it in GitHub Desktop.
Save zmousm/744b6abb518a4f52d41d34d8eb51d16f to your computer and use it in GitHub Desktop.
LimeSurvey 2.52 question types
<?php
$questionTypes = array(
"1" => array(
'description' => gT("Array dual scale"),
'group' => gT('Arrays')),
"5" => array(
'description' => gT("5 Point Choice"),
'group' => gT("Single choice questions")),
"A" => array(
'description' => gT("Array (5 Point Choice)"),
'group' => gT('Arrays')),
"B" => array(
'description' => gT("Array (10 Point Choice)"),
'group' => gT('Arrays')),
"C" => array(
'description' => gT("Array (Yes/No/Uncertain)"),
'group' => gT('Arrays')),
"D" => array(
'description' => gT("Date/Time"),
'group' => gT("Mask questions")),
"E" => array(
'description' => gT("Array (Increase/Same/Decrease)"),
'group' => gT('Arrays')),
"F" => array(
'description' => gT("Array"),
'group' => gT('Arrays')),
"G" => array(
'description' => gT("Gender"),
'group' => gT("Mask questions")),
"H" => array(
'description' => gT("Array by column"),
'group' => gT('Arrays')),
"I" => array(
'description' => gT("Language Switch"),
'group' => gT("Mask questions")),
"K" => array(
'description' => gT("Multiple Numerical Input"),
'group' => gT("Mask questions")),
"L" => array(
'description' => gT("List (Radio)"),
'group' => gT("Single choice questions")),
"M" => array(
'description' => gT("Multiple choice"),
'group' => gT("Multiple choice questions")),
"N" => array(
'description' => gT("Numerical Input"),
'group' => gT("Mask questions")),
"O" => array(
'description' => gT("List with comment"),
'group' => gT("Single choice questions")),
"P" => array(
'description' => gT("Multiple choice with comments"),
'group' => gT("Multiple choice questions")),
"Q" => array(
'description' => gT("Multiple Short Text"),
'group' => gT("Text questions")),
"R" => array(
'description' => gT("Ranking"),
'group' => gT("Mask questions")),
"S" => array(
'description' => gT("Short Free Text"),
'group' => gT("Text questions")),
"T" => array(
'description' => gT("Long Free Text"),
'group' => gT("Text questions")),
"U" => array(
'description' => gT("Huge Free Text"),
'group' => gT("Text questions")),
"X" => array(
'description' => gT("Text display"),
'group' => gT("Mask questions")),
"Y" => array(
'description' => gT("Yes/No"),
'group' => gT("Mask questions")),
"!" => array(
'description' => gT("List (Dropdown)"),
'group' => gT("Single choice questions")),
":" => array(
'description' => gT("Array (Numbers)"),
'group' => gT('Arrays')),
";" => array(
'description' => gT("Array (Texts)"),
'group' => gT('Arrays')),
"|" => array(
'description' => gT("File upload"),
'group' => gT("Mask questions")),
"*" => array(
'description' => gT("Equation"),
'group' => gT("Mask questions")),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment