column-picker-modal.blade.php
2 years ago
group-select.blade.php
2 years ago
rows.blade.php
2 years ago
table-toolbar.blade.php
2 years ago
table.blade.php
2 years ago
group-select.blade.php
11 lines
| 1 | <div class="group-select-container"> |
| 2 | <select id="group-select" class="group-select" data-controller="group" data-action="group#changeGroup"> |
| 3 | <?php foreach($options as $option) : ?> |
| 4 | <option id="<?php echo esc_attr($option->id()) ?>" |
| 5 | value="<?php echo esc_attr($option->id()) ?>" |
| 6 | <?php selected($option->id(), $group->id(), true); ?> |
| 7 | data-testid="group-by-<?php echo esc_attr($option->id()) ?>"><?php echo esc_html($option->singular()); ?></option> |
| 8 | <?php endforeach; ?> |
| 9 | </select> |
| 10 | <label><span class="dashicons dashicons-open-folder"></span></label> |
| 11 | </div> |