block.json
6 months ago
controller.php
6 months ago
index.asset.php
4 months ago
index.js
4 months ago
style-index-rtl.css
6 months ago
style-index.css
6 months ago
view.php
6 months ago
controller.php
15 lines
| 1 | <?php |
| 2 | $label = $attributes['label'] ?? __( 'Review Content', 'surecart' ); |
| 3 | $placeholder = $attributes['placeholder'] ?? ''; |
| 4 | $required = $attributes['required'] ?? true; |
| 5 | $rows = $attributes['rows'] ?? 4; |
| 6 | $text_align = $attributes['text_align'] ?? 'left'; |
| 7 | |
| 8 | $wrapper_attributes = get_block_wrapper_attributes( |
| 9 | [ |
| 10 | 'style' => "text-align: {$text_align};", |
| 11 | ] |
| 12 | ); |
| 13 | |
| 14 | return 'file:./view.php'; |
| 15 |