| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Suppress "error - 0 - No summary was found for this file" on phpdoc generation |
| 5 |
* |
| 6 |
* @package WPDataProjects\Parent_Child |
| 7 |
*/ |
| 8 |
|
| 9 |
namespace WPDataProjects\Parent_Child { |
| 10 |
|
| 11 |
/** |
| 12 |
* Class WPDP_Child_Form_View |
| 13 |
* |
| 14 |
* @author Peter Schulz |
| 15 |
* @since 2.0.0 |
| 16 |
*/ |
| 17 |
class WPDP_Child_Form_View extends WPDP_Child_Form { |
| 18 |
|
| 19 |
/** |
| 20 |
* WPDP_Child_Form_View constructor. |
| 21 |
* |
| 22 |
* @param $schema_name |
| 23 |
* @param $table_name |
| 24 |
* @param $wpda_list_columns |
| 25 |
* @param array $args |
| 26 |
*/ |
| 27 |
public function __construct( $schema_name, $table_name, $wpda_list_columns, $args = array() ) { |
| 28 |
parent::__construct( $schema_name, $table_name, $wpda_list_columns, $args ); |
| 29 |
|
| 30 |
$this->action = 'view'; |
| 31 |
} |
| 32 |
|
| 33 |
} |
| 34 |
|
| 35 |
} |
| 36 |
|