PluginProbe
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards / 2.0.13
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards v2.0.13
5.5.84 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 All 160 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 2.0.13, at WPDataProjects/Project/WPDP_Project_Table_View.php

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