PluginProbe
Blocks – Reusable Content, Shortcodes & Site Variables / trunk
Blocks – Reusable Content, Shortcodes & Site Variables vtrunk
26.09.03.15 26.08.31.21 26.08.22.20 26.08.22.22 26.08.22.17 26.08.22.13 26.08.21.19 26.08.07.23 26.07.19.14 26.07.13.21 26.07.13.17 26.07.12.13 026.07.07.21 026.07.05.18 026.06.26.20 026.06.26.21 026.06.08.20 026.05.13.14 026.04.29.10 trunk 026.02.22.22 026.03.16.23 026.04.23.13
blocks / src / Settings / SectionDefinition.php

SectionDefinition.php in Blocks – Reusable Content, Shortcodes & Site Variables trunk, at src/Settings/SectionDefinition.php

23 lines 485 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 declare(strict_types=1);
4
5 namespace RenzoJohnson\Blocks\Settings;
6
7 \defined( 'ABSPATH' ) || exit;
8
9 final class SectionDefinition {
10 /**
11 * @param list<string> $description_paragraphs
12 * @param list<FieldDefinition> $fields
13 */
14 public function __construct(
15 public readonly string $id,
16 public readonly string $label,
17 public readonly array $description_paragraphs,
18 public readonly array $fields,
19 public readonly bool $honeypot_description = false,
20 ) {
21 }
22 }
23