File "WPDP_Child_Form_View.php"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/.wp-cli/wp-content/plugins/wp-data-access/WPDataProjects/Parent_Child/WPDP_Child_Form_View.php
File size: 734 bytes
MIME-type: text/x-php
Charset: utf-8

<?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';
		}

	}

}