Class to access form categories via WP-CLI.
Description
Source
File: src/db-objects/form-categories/cli-form-categories-command.php
class CLI_Form_Categories_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', 'description', 'parent', 'count' ); } }
Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |
Methods
- __construct — Constructor.