function _yamaps_legal_agreement_url in Yandex.Maps 7
Provide legal agreement url, use YAMAPS_LEGAL_AGREEMENT_URL instead direct calling.
1 call to _yamaps_legal_agreement_url()
- yamaps.module in ./
yamaps.module - Yandex Maps module main file.
File
- ./
yamaps.module, line 457 - Yandex Maps module main file.
Code
function _yamaps_legal_agreement_url() {
global $is_https;
return $is_https ? 'https://legal.yandex.ru/maps_api/' : 'http://legal.yandex.ru/maps_api/';
}