record-by-token-view.php
2 years ago
token-by-record-view.php
2 years ago
tokens-view.php
2 years ago
tokens-view.php
30 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Webhook\Db\Views; |
| 5 | |
| 6 | use Jet_Form_Builder\Db_Queries\Views\View_Base; |
| 7 | use JFB_Modules\Webhook\Db\Models\Tokens_Model; |
| 8 | |
| 9 | // If this file is called directly, abort. |
| 10 | if ( ! defined( 'WPINC' ) ) { |
| 11 | die; |
| 12 | } |
| 13 | |
| 14 | class Tokens_View extends View_Base { |
| 15 | |
| 16 | public function table(): string { |
| 17 | return Tokens_Model::table(); |
| 18 | } |
| 19 | |
| 20 | public function select_columns(): array { |
| 21 | return Tokens_Model::schema_columns(); |
| 22 | } |
| 23 | |
| 24 | public function get_dependencies(): array { |
| 25 | return array( |
| 26 | new Tokens_Model(), |
| 27 | ); |
| 28 | } |
| 29 | } |
| 30 |