legacy.php
28 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * @var array $options |
| 5 | */ |
| 6 | |
| 7 | use cybot\cookiebot\settings\templates\Legacy_Settings; |
| 8 | |
| 9 | ?> |
| 10 | <div> |
| 11 | <?php |
| 12 | if ( ! empty( $options ) ) { |
| 13 | foreach ( $options as $option => $value ) { |
| 14 | echo wp_kses( |
| 15 | Legacy_Settings::get_legacy_option( $option, $value ), |
| 16 | array( |
| 17 | 'input' => array( |
| 18 | 'type' => array(), |
| 19 | 'value' => array(), |
| 20 | 'name' => array(), |
| 21 | ), |
| 22 | ) |
| 23 | ); |
| 24 | } |
| 25 | } |
| 26 | ?> |
| 27 | </div> |
| 28 |