Piwik\Plugin\ControllerAdmin::notifyIfURLIsNotSecure PHP Method

notifyIfURLIsNotSecure() private static method

private static notifyIfURLIsNotSecure ( )
    private static function notifyIfURLIsNotSecure()
    {
        $isURLSecure = ProxyHttp::isHttps();
        if ($isURLSecure) {
            return;
        }
        if (!Piwik::hasUserSuperUserAccess()) {
            return;
        }
        if (Url::isLocalHost(Url::getCurrentHost())) {
            return;
        }
        if (Development::isEnabled()) {
            return;
        }
        $message = Piwik::translate('General_CurrentlyUsingUnsecureHttp');
        $message .= " ";
        $message .= Piwik::translate('General_ReadThisToLearnMore', array('<a rel="noreferrer" target="_blank" href="https://piwik.org/faq/how-to/faq_91/">', '</a>'));
        $notification = new Notification($message);
        $notification->context = Notification::CONTEXT_WARNING;
        $notification->raw = true;
        Notification\Manager::notify('ControllerAdmin_HttpIsUsed', $notification);
    }