Verzeichnisstruktur phpBB-3.3.15


Veröffentlicht
28.08.2024

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

bootstrap80.php

Zuletzt modifiziert: 02.04.2025, 15:02 - Dateigröße: 3.92 KiB


001  <?php
002   
003  /*
004   * This file is part of the Symfony package.
005   *
006   * (c) Fabien Potencier <fabien@symfony.com>
007   *
008   * For the full copyright and license information, please view the LICENSE
009   * file that was distributed with this source code.
010   */
011   
012  use Symfony\Polyfill\Intl\Idn as p;
013   
014  if (!defined('U_IDNA_PROHIBITED_ERROR')) {
015      define('U_IDNA_PROHIBITED_ERROR', 66560);
016  }
017  if (!defined('U_IDNA_ERROR_START')) {
018      define('U_IDNA_ERROR_START', 66560);
019  }
020  if (!defined('U_IDNA_UNASSIGNED_ERROR')) {
021      define('U_IDNA_UNASSIGNED_ERROR', 66561);
022  }
023  if (!defined('U_IDNA_CHECK_BIDI_ERROR')) {
024      define('U_IDNA_CHECK_BIDI_ERROR', 66562);
025  }
026  if (!defined('U_IDNA_STD3_ASCII_RULES_ERROR')) {
027      define('U_IDNA_STD3_ASCII_RULES_ERROR', 66563);
028  }
029  if (!defined('U_IDNA_ACE_PREFIX_ERROR')) {
030      define('U_IDNA_ACE_PREFIX_ERROR', 66564);
031  }
032  if (!defined('U_IDNA_VERIFICATION_ERROR')) {
033      define('U_IDNA_VERIFICATION_ERROR', 66565);
034  }
035  if (!defined('U_IDNA_LABEL_TOO_LONG_ERROR')) {
036      define('U_IDNA_LABEL_TOO_LONG_ERROR', 66566);
037  }
038  if (!defined('U_IDNA_ZERO_LENGTH_LABEL_ERROR')) {
039      define('U_IDNA_ZERO_LENGTH_LABEL_ERROR', 66567);
040  }
041  if (!defined('U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR')) {
042      define('U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR', 66568);
043  }
044  if (!defined('U_IDNA_ERROR_LIMIT')) {
045      define('U_IDNA_ERROR_LIMIT', 66569);
046  }
047  if (!defined('U_STRINGPREP_PROHIBITED_ERROR')) {
048      define('U_STRINGPREP_PROHIBITED_ERROR', 66560);
049  }
050  if (!defined('U_STRINGPREP_UNASSIGNED_ERROR')) {
051      define('U_STRINGPREP_UNASSIGNED_ERROR', 66561);
052  }
053  if (!defined('U_STRINGPREP_CHECK_BIDI_ERROR')) {
054      define('U_STRINGPREP_CHECK_BIDI_ERROR', 66562);
055  }
056  if (!defined('IDNA_DEFAULT')) {
057      define('IDNA_DEFAULT', 0);
058  }
059  if (!defined('IDNA_ALLOW_UNASSIGNED')) {
060      define('IDNA_ALLOW_UNASSIGNED', 1);
061  }
062  if (!defined('IDNA_USE_STD3_RULES')) {
063      define('IDNA_USE_STD3_RULES', 2);
064  }
065  if (!defined('IDNA_CHECK_BIDI')) {
066      define('IDNA_CHECK_BIDI', 4);
067  }
068  if (!defined('IDNA_CHECK_CONTEXTJ')) {
069      define('IDNA_CHECK_CONTEXTJ', 8);
070  }
071  if (!defined('IDNA_NONTRANSITIONAL_TO_ASCII')) {
072      define('IDNA_NONTRANSITIONAL_TO_ASCII', 16);
073  }
074  if (!defined('IDNA_NONTRANSITIONAL_TO_UNICODE')) {
075      define('IDNA_NONTRANSITIONAL_TO_UNICODE', 32);
076  }
077  if (!defined('INTL_IDNA_VARIANT_UTS46')) {
078      define('INTL_IDNA_VARIANT_UTS46', 1);
079  }
080  if (!defined('IDNA_ERROR_EMPTY_LABEL')) {
081      define('IDNA_ERROR_EMPTY_LABEL', 1);
082  }
083  if (!defined('IDNA_ERROR_LABEL_TOO_LONG')) {
084      define('IDNA_ERROR_LABEL_TOO_LONG', 2);
085  }
086  if (!defined('IDNA_ERROR_DOMAIN_NAME_TOO_LONG')) {
087      define('IDNA_ERROR_DOMAIN_NAME_TOO_LONG', 4);
088  }
089  if (!defined('IDNA_ERROR_LEADING_HYPHEN')) {
090      define('IDNA_ERROR_LEADING_HYPHEN', 8);
091  }
092  if (!defined('IDNA_ERROR_TRAILING_HYPHEN')) {
093      define('IDNA_ERROR_TRAILING_HYPHEN', 16);
094  }
095  if (!defined('IDNA_ERROR_HYPHEN_3_4')) {
096      define('IDNA_ERROR_HYPHEN_3_4', 32);
097  }
098  if (!defined('IDNA_ERROR_LEADING_COMBINING_MARK')) {
099      define('IDNA_ERROR_LEADING_COMBINING_MARK', 64);
100  }
101  if (!defined('IDNA_ERROR_DISALLOWED')) {
102      define('IDNA_ERROR_DISALLOWED', 128);
103  }
104  if (!defined('IDNA_ERROR_PUNYCODE')) {
105      define('IDNA_ERROR_PUNYCODE', 256);
106  }
107  if (!defined('IDNA_ERROR_LABEL_HAS_DOT')) {
108      define('IDNA_ERROR_LABEL_HAS_DOT', 512);
109  }
110  if (!defined('IDNA_ERROR_INVALID_ACE_LABEL')) {
111      define('IDNA_ERROR_INVALID_ACE_LABEL', 1024);
112  }
113  if (!defined('IDNA_ERROR_BIDI')) {
114      define('IDNA_ERROR_BIDI', 2048);
115  }
116  if (!defined('IDNA_ERROR_CONTEXTJ')) {
117      define('IDNA_ERROR_CONTEXTJ', 4096);
118  }
119   
120  if (!function_exists('idn_to_ascii')) {
121      function idn_to_ascii(?string $domain, ?int $flags = IDNA_DEFAULT, ?int $variant = INTL_IDNA_VARIANT_UTS46, &$idna_info = null): string|false { return p\Idn::idn_to_ascii((string) $domain, (int) $flags, (int) $variant, $idna_info); }
122  }
123  if (!function_exists('idn_to_utf8')) {
124      function idn_to_utf8(?string $domain, ?int $flags = IDNA_DEFAULT, ?int $variant = INTL_IDNA_VARIANT_UTS46, &$idna_info = null): string|false { return p\Idn::idn_to_utf8((string) $domain, (int) $flags, (int) $variant, $idna_info); }
125  }
126