| 1 |
<?php |
| 2 |
|
| 3 |
if ( ! defined('ABSPATH') ) { |
| 4 |
exit; |
| 5 |
} |
| 6 |
|
| 7 |
?> |
| 8 |
<tr class="<?php echo esc_attr( flrt_filter_row_class( $attributes ) ); ?>"<?php flrt_maybe_hide_row( $attributes ); ?>><?php |
| 9 |
|
| 10 |
flrt_include_admin_view('filter-field-label', array( |
| 11 |
'field_key' => $field_key, |
| 12 |
'attributes' => $attributes |
| 13 |
) |
| 14 |
); |
| 15 |
|
| 16 |
flrt_include_admin_view('filter-field-input', array( |
| 17 |
'field_key' => $field_key, |
| 18 |
'attributes' => $attributes |
| 19 |
) |
| 20 |
); |
| 21 |
?> |
| 22 |
</tr> |