Submission::get_blacklist()

Returns a list of internal properties that are not publicly accessible.

Description

When overriding this method, always make sure to merge with the parent result.

See also

Return

(array) Property blacklist.

Source

File: src/db-objects/submissions/submission.php

	protected function get_blacklist() {
		$blacklist = parent::get_blacklist();

		$blacklist[] = 'values';
		$blacklist[] = 'element_values';

		return $blacklist;
	}

Changelog

Changelog
Version Description
1.0.0 Introduced.