示例#1
0
 * DESIGNERS: SCROLL DOWN! (IGNORE ALL THIS STUFF AT THE TOP)
 ************************************************************/
defined('C5_EXECUTE') or die("Access Denied.");
use Concrete\Block\Form\MiniSurvey;
$survey = $controller;
$miniSurvey = new MiniSurvey($b);
$miniSurvey->frontEndMode = true;
//Clean up variables from controller so html is easier to work with...
$bID = intval($bID);
$qsID = intval($survey->questionSetId);
$formAction = $view->action('submit_form') . '#formblock' . $bID;
$questionsRS = $miniSurvey->loadQuestions($qsID, $bID);
$questions = array();
while ($questionRow = $questionsRS->fetchRow()) {
    $question = $questionRow;
    $question['input'] = $miniSurvey->loadInputType($questionRow, false);
    //Make type names common-sensical
    if ($questionRow['inputType'] == 'text') {
        $question['type'] = 'textarea';
    } else {
        if ($questionRow['inputType'] == 'field') {
            $question['type'] = 'text';
        } else {
            $question['type'] = $questionRow['inputType'];
        }
    }
    $question['labelFor'] = 'for="Question' . $questionRow['msqID'] . '"';
    //Remove hardcoded style on textareas
    if ($question['type'] == 'textarea') {
        $question['input'] = str_replace('style="width:95%"', '', $question['input']);
    }
示例#2
0
 public function view()
 {
     $miniSurvey = new MiniSurvey();
     $miniSurvey->frontEndMode = true;
     $bID = intval($this->bID);
     $qsID = intval($this->questionSetId);
     $formDomId = "miniSurveyView{$bID}";
     $hasFileUpload = false;
     $questionsRS = $miniSurvey->loadQuestions($qsID, $bID);
     $questions = array();
     while ($questionRow = $questionsRS->fetchRow()) {
         $question = $questionRow;
         $question['input'] = $miniSurvey->loadInputType($questionRow, false);
         if ($questionRow['inputType'] == 'fileupload') {
             $hasFileUpload = true;
         }
         //Make type names common-sensical
         if ($questionRow['inputType'] == 'text') {
             $question['type'] = 'textarea';
         } else {
             if ($questionRow['inputType'] == 'field') {
                 $question['type'] = 'text';
             } else {
                 $question['type'] = $questionRow['inputType'];
             }
         }
         //Construct label "for" (and misc. hackery for checkboxlist / radio lists)
         if ($question['type'] == 'checkboxlist') {
             $question['input'] = str_replace('<div class="checkboxPair">', '<div class="checkboxPair"><label>', $question['input']);
             $question['input'] = str_replace("</div>\n", "</label></div>\n", $question['input']);
             //include linebreak in find/replace string so we don't replace the very last closing </div> (the one that closes the "checkboxList" wrapper div that's around this whole question)
         } else {
             if ($question['type'] == 'radios') {
                 //Put labels around each radio items (super hacky string replacement -- this might break in future versions of C5)
                 $question['input'] = str_replace('<div class="radioPair">', '<div class="radioPair"><label>', $question['input']);
                 $question['input'] = str_replace('</div>', '</label></div>', $question['input']);
                 //Make radioList wrapper consistent with checkboxList wrapper
                 $question['input'] = "<div class=\"radioList\">\n{$question['input']}\n</div>\n";
             } else {
                 $question['labelFor'] = 'for="Question' . $questionRow['msqID'] . '"';
             }
         }
         //Remove hardcoded style on textareas
         if ($question['type'] == 'textarea') {
             $question['input'] = str_replace('style="width:95%"', '', $question['input']);
         }
         $questions[] = $question;
     }
     //Prep thank-you message
     $success = $_GET['surveySuccess'] && $_GET['qsid'] == intval($qsID);
     $thanksMsg = $this->thankyouMsg;
     //Prep error message(s)
     $errorHeader = $this->get('formResponse');
     $errors = $this->get('errors');
     $errors = is_array($errors) ? $errors : array();
     //Send data to the view
     $this->set('formDomId', $formDomId);
     $this->set('hasFileUpload', $hasFileUpload);
     $this->set('qsID', $qsID);
     $this->set('pURI', $pURI);
     $this->set('success', $success);
     $this->set('thanksMsg', $thanksMsg);
     $this->set('errorHeader', $errorHeader);
     $this->set('errors', $errors);
     $this->set('questions', $questions);
     $this->set('enableSpamHoneypot', $this->enableSpamHoneypot);
     $this->set('formName', $surveyBlockInfo['surveyName']);
     //for GA event tracking
 }