Piwik\Plugin\ControllerAdmin::notifyWhenPhpVersionIsEOL PHP Метод

notifyWhenPhpVersionIsEOL() приватный статический Метод

private static notifyWhenPhpVersionIsEOL ( )
    private static function notifyWhenPhpVersionIsEOL()
    {
        return;
        // no supported version (5.5+) has currently ended support
        $notifyPhpIsEOL = Piwik::hasUserSuperUserAccess() && self::isPhpVersionAtLeast55();
        if (!$notifyPhpIsEOL) {
            return;
        }
        $message = Piwik::translate('General_WarningPiwikWillStopSupportingPHPVersion', array($deprecatedMajorPhpVersion, self::getNextRequiredMinimumPHP())) . "\n " . Piwik::translate('General_WarningPhpVersionXIsTooOld', $deprecatedMajorPhpVersion);
        $notification = new Notification($message);
        $notification->title = Piwik::translate('General_Warning');
        $notification->priority = Notification::PRIORITY_LOW;
        $notification->context = Notification::CONTEXT_WARNING;
        $notification->type = Notification::TYPE_TRANSIENT;
        $notification->flags = Notification::FLAG_NO_CLEAR;
        NotificationManager::notify('PHP54VersionCheck', $notification);
    }