PUM_Install::get_option( $key,  $default = false )


Description Description


Source Source

File: classes/Install.php

	public static function get_option( $key, $default = false ) {
		if ( function_exists( 'pum_get_option' ) ) {
			return pum_get_option( $key, $default );
		}

		return PUM_Utils_Options::get( $key, $default );
	}


Top ↑

User Contributed Notes User Contributed Notes

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