Form::get_db_fields()

Returns the names of all properties that should be accessible on the Core object.

Description

See also

Return

(array) Array of property names.

Source

File: src/db-objects/forms/form.php

	protected function get_db_fields() {
		return array(
			'post_title',
			'post_author',
			'post_status',
		);
	}

Changelog

Changelog
Version Description
1.0.0 Introduced.