PluginProbe
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards / 5.5.83
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards v5.5.83
5.5.83 5.5.82 5.5.81 5.5.80 5.5.79 5.5.77 5.5.76 5.5.75 5.5.73 5.5.72 5.5.22 5.5.23 5.5.29 5.5.3 5.5.31 5.5.32 5.5.34 5.5.35 5.5.36 5.5.37 5.5.4 5.5.40 5.5.41 5.5.42 5.5.43 All 159 releases
wp-data-access / WPDataProjects / Project / WPDP_Project_Table_View.php

WPDP_Project_Table_View.php in WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards 5.5.83, at WPDataProjects/Project/WPDP_Project_Table_View.php

41 lines 782 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Suppress "error - 0 - No summary was found for this file" on phpdoc generation
5 *
6 * @package WPDataProjects\Project
7 */
8
9 namespace WPDataProjects\Project {
10
11 use \WPDataAccess\List_Table\WPDA_List_View;
12
13 /**
14 * Class WPDP_Project_Table_View extends WPDA_List_View
15 *
16 * @see WPDA_List_View
17 *
18 * @author Peter Schulz
19 * @since 2.0.0
20 */
21 class WPDP_Project_Table_View extends WPDA_List_View {
22
23 /**
24 * Overwrites method show to add extra actions
25 */
26 public function show() {
27 // Add datetimepicker
28 wp_enqueue_style( 'datetimepicker' );
29 wp_enqueue_script( 'datetimepicker' );
30
31 if ( 'reconcile' === $this->action || 'reverse_engineering' === $this->action ) {
32 $this->display_edit_form();
33 } else {
34 parent::show();
35 }
36 }
37
38 }
39
40 }
41