Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

MP_Addon_Zoho::get_api_domain()

Get zoho account url.


Return Return

(mixed|string|void) Zoho API domain (Default, <a href="https://accounts.zoho.com">https://accounts.zoho.com</a>)


Top ↑

Source Source

File: calculator-zoho-add-on/inc/MP_Addon_Zoho.php

	private function get_api_domain() {

		$url = get_option(MortgagePlatform::$prefix . 'zoho_api_domain');
		$value = $url ? $url : 'https://accounts.zoho.com';

		return $value;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.