# wp-data-access/5.5.85/WPDataProjects/Parent_Child/WPDP_Child_Form_View.php

WP Data Access – App Builder for Tables, Forms, Charts, Maps &amp; Dashboards, version 5.5.85. 36 lines.

- Page: https://pluginprobe.com/plugins/wp-data-access/5.5.85/code/WPDataProjects/Parent_Child/WPDP_Child_Form_View.php
- Raw: https://pluginprobe.com/plugins/wp-data-access/5.5.85/raw/WPDataProjects/Parent_Child/WPDP_Child_Form_View.php
- Modified: 2026-09-22T18:02:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-data-access/5.5.85/code/WPDataProjects/Parent_Child/WPDP_Child_Form_View.php#L10-L20`.

```php
<?php

/**
 * Suppress "error - 0 - No summary was found for this file" on phpdoc generation
 *
 * @package WPDataProjects\Parent_Child
 */

namespace WPDataProjects\Parent_Child {

	/**
	 * Class WPDP_Child_Form_View
	 *
	 * @author  Peter Schulz
	 * @since   2.0.0
	 */
	class WPDP_Child_Form_View extends WPDP_Child_Form {

		/**
		 * WPDP_Child_Form_View constructor.
		 *
		 * @param       $schema_name
		 * @param       $table_name
		 * @param       $wpda_list_columns
		 * @param array             $args
		 */
		public function __construct( $schema_name, $table_name, $wpda_list_columns, $args = array() ) {
			parent::__construct( $schema_name, $table_name, $wpda_list_columns, $args );

			$this->action = 'view';
		}

	}

}

```
