Tribe__Events__Pro__Geo_Loc::getOptions( bool $force = false )

Gets all settings


Parameters

$force

(bool) (Optional)

Default value: false


Top ↑

Return

(mixed|void)


Top ↑

Source

File: src/Tribe/Geo_Loc.php

	public static function getOptions( $force = false ) {
		if ( ! isset( self::$options ) || $force ) {
			$options       = get_option( self::OPTIONNAME, array() );
			self::$options = apply_filters( 'tribe_geoloc_get_options', $options );
		}

		return self::$options;
	}