31 lines
1.6 KiB
PHP
31 lines
1.6 KiB
PHP
<?php
|
|
|
|
//=================================================================
|
|
// RMA allowed responses ===================================
|
|
//=================================================================
|
|
|
|
$allowedResponse_1 = array(
|
|
array("responseID" => "1", "Response" => $rma_question_allowed_label1),
|
|
array("responseID" => "2", "Response" => $rma_question_allowed_label2)
|
|
);
|
|
|
|
//=================================================================
|
|
// RMA Tool questions ===================================
|
|
//=================================================================
|
|
|
|
$arrayQuestions_rma = array(
|
|
array("Group" => $rma_question_header_1,
|
|
"Group_sequence" => '1',
|
|
"Questions_in_group" => array(
|
|
array("Question_sequence" => '1',"QuestionID" => "rma_1","Question" => $rma_question_1, "Type" => 'dropdown', "Response" => $allowedResponse_1),
|
|
array("Question_sequence" => '2',"QuestionID" => "rma_2","Question" => $rma_question_2, "Type" => 'dropdown', "Response" => $allowedResponse_1),
|
|
array("Question_sequence" => '3',"QuestionID" => "rma_3","Question" => $rma_question_3, "Type" => 'dropdown', "Response" => $allowedResponse_1),
|
|
array("Question_sequence" => '4',"QuestionID" => "rma_4","Question" => $rma_question_4, "Type" => 'dropdown', "Response" => $allowedResponse_1)
|
|
)
|
|
)
|
|
);
|
|
|
|
//=================================================================
|
|
// ===================================
|
|
//=================================================================
|