common
4 years ago
basic.php
4 years ago
buddypress.php
4 years ago
color_picker.php
4 years ago
design.php
4 years ago
google_classroom.php
4 years ago
gradebook.php
4 years ago
import_export.php
4 years ago
notifications.php
4 years ago
status.php
4 years ago
tab.php
4 years ago
tutor_pages.php
4 years ago
zoom.php
4 years ago
gradebook.php
15 lines
| 1 | <div class="tutor-option-main-title"> |
| 2 | <div class="tutor-fs-4 tutor-fw-medium tutor-color-black"><?php echo $section->label ?></div> |
| 3 | <button class="reset-btn reset_to_default" data-reset="<?php echo esc_attr( $section['slug'] ); ?>"> |
| 4 | <i class="btn-icon tutor-icon-refresh"></i> |
| 5 | <?php echo esc_attr( 'Reset to Default', 'tutor' ); ?> |
| 6 | </button> |
| 7 | </div> |
| 8 | |
| 9 | <?php foreach ($section['blocks'] as $blocks) : |
| 10 | if (empty($blocks['label'])) : ?> |
| 11 | <div class="tutor-option-single-item tutor-mb-32"><?php echo $this->blocks($blocks) ?> </div> |
| 12 | <?php else : ?> |
| 13 | <?php echo $this->blocks($blocks); ?> |
| 14 | <?php endif; ?> |
| 15 | <?php endforeach; ?> |