File manager - Edit - /home/proidvn/me.proid.vn/wp-content/plugins/jetformbuilder/includes/admin/table-views/view-base.php
Back
<?php namespace Jet_Form_Builder\Admin\Table_Views; use JFB_Components\Repository\Repository_Item_With_Class; use JFB_Components\Repository\Repository_Static_Item_It; use Jet_Form_Builder\Db_Queries\Exceptions\Sql_Exception; use Jet_Form_Builder\Db_Queries\Traits\Model_Dependencies; use Jet_Form_Builder\Db_Queries\Traits\Model_Dependencies_Interface; use Jet_Form_Builder\Rest_Api\Rest_Endpoint; use Jet_Form_Builder\Rest_Api\Traits\Rest_Fetch_Endpoint; // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } abstract class View_Base implements Repository_Static_Item_It, Model_Dependencies_Interface, Rest_Fetch_Endpoint { use Repository_Item_With_Class; use Model_Dependencies; abstract public function get_prepared_list( array $custom_list = array() ): array; public function get_list(): array { return $this->get_raw_list( array( 'offset' => 0, 'limit' => 15, ) ); } public function get_global_actions(): array { return array(); } public function get_total(): int { return 0; } public function get_empty_message(): string { return __( 'No items found.', 'jet-form-builder' ); } public function get_rest_methods(): string { return ''; } public function get_rest_url(): string { return ''; } public function get_receive_endpoint(): array { return ( new Rest_Endpoint( $this ) )->to_array(); } public function load_data(): array { return array(); } /** * @return array */ final public function load_view(): array { try { $this->prepare_dependencies(); } catch ( Sql_Exception $exception ) { return array( 'list' => array(), 'columns' => array(), 'actions' => array(), ); } return array_merge( array( 'list' => $this->get_prepared_list(), 'columns' => $this->get_columns_headings(), 'actions' => $this->get_global_actions(), 'total' => $this->get_total(), 'receive_url' => $this->get_receive_endpoint(), 'empty_message' => $this->get_empty_message(), ), $this->load_data() ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Generation time: 0.17 |
proxy
|
phpinfo
|
Settings