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
basic.php
14 lines
| 1 | <?php echo $this->view_template( 'common/reset-button-template.php', $section ); ?> |
| 2 | |
| 3 | <?php |
| 4 | foreach ( $section['blocks'] as $blocks ) : |
| 5 | if ( empty( $blocks['label'] ) ) : |
| 6 | ?> |
| 7 | <div class="tutor-option-single-item tutor-mb-32"><?php echo $this->blocks( $blocks ); ?> </div> |
| 8 | <?php else : ?> |
| 9 | <?php |
| 10 | echo $this->blocks( $blocks ); |
| 11 | ?> |
| 12 | <?php endif; ?> |
| 13 | <?php endforeach; ?> |
| 14 |