filter-column-select.blade.php
2 years ago
interrupt-header.blade.php
1 year ago
report-header.blade.php
2 years ago
sidebar-menu-section.blade.php
2 years ago
sidebar.blade.php
2 years ago
filter-column-select.blade.php
22 lines
| 1 | <select class="filters-column" data-filters-target="column" data-action="filters#columnSelect"> |
| 2 | |
| 3 | <option value=""> |
| 4 | <?php esc_html_e('Choose a column', 'independent-analytics'); ?> |
| 5 | </option> |
| 6 | |
| 7 | @foreach($column_sections as $section_name => $column_section) |
| 8 | <optgroup label="{{ esc_attr($section_name . (($column_section['plugin_group'])->requires_pro() && iawp_is_free() ? ' (PRO)' : '')) }}"> |
| 9 | @foreach($column_section['columns'] as $column) |
| 10 | @if(!$column->is_group_plugin_enabled()) |
| 11 | <option disabled>{{ esc_html($column->name()) }}</option> |
| 12 | @continue |
| 13 | @endif |
| 14 | |
| 15 | <option value="{{ esc_attr($column->id()) }}" |
| 16 | data-type="{{ esc_attr($column->type()) }}"> |
| 17 | {{ esc_html($column->name()) }} |
| 18 | </option> |
| 19 | @endforeach |
| 20 | </optgroup> |
| 21 | @endforeach |
| 22 | </select> |