WP_Widget_Media_Audio::get_instance_schema(): array

Get schema for properties of a widget instance (item).

Description

See also

Return

array Schema for properties.

Source

public function get_instance_schema() {
	$schema = array(
		'preload' => array(
			'type'        => 'string',
			'enum'        => array( 'none', 'auto', 'metadata' ),
			'default'     => 'none',
			'description' => __( 'Preload' ),
		),
		'loop'    => array(
			'type'        => 'boolean',
			'default'     => false,
			'description' => __( 'Loop' ),
		),
	);

	foreach ( wp_get_audio_extensions() as $audio_extension ) {
		$schema[ $audio_extension ] = array(
			'type'        => 'string',
			'default'     => '',
			'format'      => 'uri',
			/* translators: %s: Audio extension. */
			'description' => sprintf( __( 'URL to the %s audio source file' ), $audio_extension ),
		);
	}

	return array_merge( $schema, parent::get_instance_schema() );
}

Changelog

VersionDescription
4.8.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.