Element_Type::sanitize_settings_sections()

Sanitizes the settings sections.

Description

See also

Source

File: src/db-objects/elements/element-types/element-type.php

	protected final function sanitize_settings_sections() {
		$defaults = array(
			'title' => '',
		);

		foreach ( $this->settings_sections as $slug => $section ) {
			$this->settings_sections[ $slug ] = array_merge( $defaults, $section );
		}
	}

Changelog

Changelog
Version Description
1.0.0 Introduced.