common
2 months ago
basic.php
1 year ago
buddypress.php
3 years ago
color_picker.php
2 months ago
design.php
3 years ago
google_classroom.php
3 years ago
gradebook.php
3 years ago
import_export.php
1 year ago
notifications.php
3 years ago
status.php
3 years ago
tab.php
1 year ago
tutor_pages.php
1 year ago
zoom.php
4 years ago
status.php
27 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Status settings |
| 4 | * |
| 5 | * @package Tutor\Views |
| 6 | * @author Themeum <support@themeum.com> |
| 7 | * @link https://themeum.com |
| 8 | * @since 2.0.0 |
| 9 | */ |
| 10 | |
| 11 | ?> |
| 12 | <div class="tutor-option-main-title"> |
| 13 | <div class="tutor-fs-4 tutor-fw-medium tutor-color-black"><?php esc_html_e( 'Status', 'tutor' ); ?></div> |
| 14 | </div> |
| 15 | |
| 16 | <?php |
| 17 | foreach ( $section['blocks'] as $blocks ) : |
| 18 | if ( empty( $blocks['label'] ) ) : |
| 19 | ?> |
| 20 | <div class="tutor-option-single-item tutor-mb-32"> |
| 21 | <?php echo $this->blocks( $blocks ); //phpcs:ignore --contain safe data ?> |
| 22 | </div> |
| 23 | <?php else : ?> |
| 24 | <?php echo $this->blocks( $blocks ); //phpcs:ignore --contain safe data ?> |
| 25 | <?php endif; ?> |
| 26 | <?php endforeach; ?> |
| 27 |