Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/wp-rocket/views/settings/page-sections/preload.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
1
+
<?php
2
+
/**
3
+
* Preload section template.
4
+
*
5
+
* @since 3.0
6
+
*
7
+
* @param array {
8
+
* Section arguments.
9
+
*
10
+
* @type string $id Page section identifier.
11
+
* @type string $title Page section title.
12
+
* }
13
+
*/
14
+
15
+
defined( 'ABSPATH' ) || exit;
16
+
17
+
?>
18
+
19
+
<div id="<?php echo esc_attr( $data['id'] ); ?>" class="wpr-Page">
20
+
<div class="wpr-sectionHeader">
21
+
<h2 class="wpr-title1 wpr-icon-refresh"><?php echo esc_html( $data['title'] ); ?></h2>
22
+
</div>
23
+
<?php $this->render_settings_sections( $data['id'] ); ?>
24
+
</div>
25
+