Tribe__Settings_Manager::get_options()

Get all options for the Events Calendar

Contents


Return

(array) of options


Top ↑

Source

File: src/Tribe/Settings_Manager.php

	public static function get_options() {
		$options = get_option( Tribe__Main::OPTIONNAME, array() );
		if ( has_filter( 'tribe_get_options' ) ) {
			_deprecated_function( 'tribe_get_options', '3.10', 'option_' . Tribe__Main::OPTIONNAME );
			$options = apply_filters( 'tribe_get_options', $options );
		}
		return $options;
	}