controller.php
13 lines
| 1 | <?php |
| 2 | $label = $attributes['label'] ?? __( 'Title', 'surecart' ); |
| 3 | $placeholder = $attributes['placeholder'] ?? __( 'Enter a title for your review', 'surecart' ); |
| 4 | $text_align = $attributes['text_align'] ?? 'left'; |
| 5 | |
| 6 | $wrapper_attributes = get_block_wrapper_attributes( |
| 7 | [ |
| 8 | 'style' => "text-align: {$text_align};", |
| 9 | ] |
| 10 | ); |
| 11 | |
| 12 | return 'file:./view.php'; |
| 13 |