PATH:
home
/
letacommog
/
lavenue
/
wp-content
/
themes
/
deep
/
lifterlms
/
quiz
/
questions
<?php /** * Picture choice question template * @since 3.16.0 * @version 3.16.0 * * @arg $attempt (obj) LLMS_Quiz_Attempt instance * @arg $question (obj) LLMS_Question instance */ if ( ! defined( 'ABSPATH' ) ) { exit; } $input_type = ( 'yes' === $question->get( 'multi_choices' ) ) ? 'checkbox' : 'radio'; $choices = $question->get_choices(); $cols = llms_get_picture_choice_question_cols( count( $choices ) ); ?> <ol class="llms-question-choices llms-cols"> <?php foreach ( $choices as $choice ) : ?> <li class="llms-choice type--picture llms-col-<?php echo absint( $cols ); ?>" id="choice-wrapper-<?php echo $choice->get( 'id' ); ?>"> <label for="choice-<?php echo $choice->get( 'id' ); ?>"> <input id="choice-<?php echo $choice->get( 'id' ); ?>" name="question_<?php echo $question->get( 'id' ); ?>[]" type="<?php echo $input_type; ?>" value="<?php echo $choice->get( 'id' ); ?>"> <span class="llms-marker type--<?php echo $input_type; ?>"> <span class="iterator"><?php echo $choice->get( 'marker' ); ?></span> <i class="fa fa-check"></i> </span> <div class="llms-choice-image"><?php echo $choice->get_image(); ?></div> </label> </li> <?php endforeach; ?> </ol>
[+]
..
[-] video.php
[edit]
[-] content-choice.php
[edit]
[-] wrapper-end.php
[edit]
[-] content-picture_choice.php
[edit]
[-] description.php
[edit]
[-] image.php
[edit]
[-] wrapper-start.php
[edit]
[-] content-true_false.php
[edit]