glossary-query.php
41 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Compatibility\Jet_Engine\Option_Query; |
| 5 | |
| 6 | use JFB_Modules\Option_Query\Interfaces\Option_Query_It; |
| 7 | use JFB_Modules\Option_Query\Traits\Option_Query_Trait; |
| 8 | |
| 9 | // If this file is called directly, abort. |
| 10 | if ( ! defined( 'WPINC' ) ) { |
| 11 | die; |
| 12 | } |
| 13 | |
| 14 | class Glossary_Query implements Option_Query_It { |
| 15 | |
| 16 | use Option_Query_Trait; |
| 17 | |
| 18 | public function rep_item_id() { |
| 19 | return 'glossary'; |
| 20 | } |
| 21 | |
| 22 | public function fetch(): \Generator { |
| 23 | $glossary_id = absint( $this->get_query( 'id' ) ); |
| 24 | $glossary = jet_engine()->glossaries->data->get_item_for_edit( $glossary_id ); |
| 25 | |
| 26 | if ( empty( $glossary['fields'] ) ) { |
| 27 | return; |
| 28 | } |
| 29 | |
| 30 | foreach ( $glossary['fields'] as $field ) { |
| 31 | if ( $this->has_query( 'search' ) && |
| 32 | false === strpos( $field['label'], $this->get_query( 'search' ) ) |
| 33 | ) { |
| 34 | continue; |
| 35 | } |
| 36 | yield $field; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | } |
| 41 |