Form_Category::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/form-categories/form-category.php

	protected function get_db_fields() {
		return array(
			'slug',
			'description',
			'parent',
			'count',
		);
	}

Changelog

Changelog
Version Description
1.0.0 Introduced.