record-actions.php
2 years ago
record-by-payment.php
2 years ago
record-errors.php
2 years ago
record-fields-view-count.php
2 years ago
record-fields-view.php
2 years ago
record-view-count.php
2 years ago
record-view-forms.php
2 years ago
record-view.php
2 years ago
record-fields-view-count.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Form_Record\Query_Views; |
| 5 | |
| 6 | use Jet_Form_Builder\Db_Queries\Views\View_Base_Count_Trait; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | class Record_Fields_View_Count extends Record_Fields_View { |
| 14 | |
| 15 | use View_Base_Count_Trait; |
| 16 | } |
| 17 |