Skip to content
Snippets Groups Projects
url_helper.php 527 B
Newer Older
  • Learn to ignore specific revisions
  • <?php
    
    if (!function_exists('host_url')) {
        /**
         * Return the host URL to use in views
         *
         * @return string|false
         */
        function host_url()
        {
    
                $protocol =
                    (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ||
                    $_SERVER['SERVER_PORT'] == 443
                        ? 'https://'
                        : 'http://';
    
                return $protocol . $_SERVER['HTTP_HOST'] . '/';