You are here

multichoice.theme.inc in Quiz 7.5

Theme functions for the multichoice question type.

File

question_types/multichoice/theme/multichoice.theme.inc
View source
<?php

/**
 * @file
 * Theme functions for the multichoice question type.
 */

/**
 * Theme the creation form.
 *
 * @param array $variables
 *
 * @return string
 *   An HTML string representing the themed output.
 */
function theme_multichoice_creation_form($variables) {
  $form = $variables['form'];
  $path = drupal_get_path('module', 'multichoice') . '/multichoice.js';
  drupal_add_js($path);

  // We open the settings fieldset if there is errors involving the choice_multi
  // setting.
  $errors = form_get_errors();
  if (isset($errors['choice_multi'])) {
    $form['settings']['#collapsed'] = FALSE;
  }

  // We open the alternative fieldsets if errors have been reported.
  if ($errors) {
    for ($i = 0; isset($form[$i]) && is_array($form[$i]); $i++) {
      if (drupal_strlen(strip_tags($_POST['alternatives'][$i]['answer']['value'])) > 0) {
        $form[$i]['#collapsed'] = FALSE;
      }
    }
  }
  return drupal_render_children($form);
}

/**
 * Theme the answer part of the node view.
 *
 * @param array $variables
 *
 * @return string
 *   An HTML string representing the themed output.
 */
function theme_multichoice_answer_node_view($variables) {
  $alternatives = $variables['alternatives'];
  $show_correct = $variables['show_correct'];
  $header = array(
    '',
    '',
  );
  foreach ($alternatives as $i => $short) {
    $answer_markup = check_markup($short['answer']['value'], $short['answer']['format']);

    // Find the is_correct status.
    $is_correct = $short['score_if_chosen'] > $short['score_if_not_chosen'];
    $image = $is_correct ? 'correct' : 'wrong';
    if (!$show_correct) {
      $image = 'unknown';
    }
    $rows[] = array(
      array(
        'width' => 64,
        'data' => array(
          '#theme' => 'html_tag',
          '#tag' => 'span',
          '#attributes' => array(
            'class' => array(
              'quiz-score-icon',
              $image,
            ),
            'title' => $show_correct ? t('Score if chosen: @sc Score if not chosen: @nc', array(
              '@sc' => $short['score_if_chosen'],
              '@nc' => $short['score_if_not_chosen'],
            )) : t('You are not allowed to view the solution for this question'),
          ),
        ),
      ),
      $answer_markup,
    );
  }
  return theme('table', array(
    'header' => $header,
    'rows' => $rows,
  ));
}

Functions

Namesort descending Description
theme_multichoice_answer_node_view Theme the answer part of the node view.
theme_multichoice_creation_form Theme the creation form.