Automattic\WooCommerce\Admin\RemoteInboxNotifications
RemoteInboxNotificationsEngine::get_stored_state
Gets the stored state option, and does the initial set up if it doesn't already exist.
Method of the class: RemoteInboxNotificationsEngine{}
No Hooks.
Returns
Object. The stored state option.
Usage
$result = RemoteInboxNotificationsEngine::get_stored_state();
RemoteInboxNotificationsEngine::get_stored_state() RemoteInboxNotificationsEngine::get stored state code WC 10.9.1
public static function get_stored_state() {
$stored_state = get_option( self::STORED_STATE_OPTION_NAME );
if ( false === $stored_state || ! is_object( $stored_state ) ) {
$stored_state = new \stdClass();
$stored_state = StoredStateSetupForProducts::init_stored_state(
$stored_state
);
update_option(
self::STORED_STATE_OPTION_NAME,
$stored_state,
false
);
}
return $stored_state;
}