Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/tutor/views/options/template/status.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
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
+