CLI_Forms_Command

Class to access forms via WP-CLI.

Description

Source

File: src/db-objects/forms/cli-forms-command.php

class CLI_Forms_Command extends CLI_Models_Command {

	/**
	 * Constructor.
	 *
	 * @since 1.0.0
	 *
	 * @param Manager $manager The manager instance.
	 */
	public function __construct( $manager ) {
		parent::__construct( $manager );

		$this->obj_fields = array( 'id', 'title', 'slug', 'author', 'status', 'timestamp', 'timestamp_modified' );
	}
}

Changelog

Changelog
Version Description
1.0.0 Introduced.

Methods