Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/wp-rocket/views/settings/sections/nocontainer.php

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + <?php
2 + /**
3 + * Settings fields wrapper template.
4 + *
5 + * @since 3.0
6 + *
7 + * @param array $data {
8 + * Fields container data.
9 + *
10 + * @type string $id Section identifier.
11 + * @type string $title Section title.
12 + * @type string $description Section description.
13 + * @type string $help Data to pass to beacon.
14 + * @type string $page Page section identifier.
15 + * }
16 + */
17 +
18 + defined( 'ABSPATH' ) || exit;
19 +
20 + ?>
21 + <?php echo esc_html( $data['title'] ); ?>
22 + <?php
23 + $this->render_settings_fields( $data['page'], $data['id'] );
24 +