CLI_Element_Choices_Command

Class to access element choices via WP-CLI.

Description

Source

File: src/db-objects/element-choices/cli-element-choices-command.php

class CLI_Element_Choices_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', 'element_id', 'field', 'value', 'sort' );
	}
}

Changelog

Changelog
Version Description
1.0.0 Introduced.

Methods