Verzeichnisstruktur phpBB-3.1.0


Veröffentlicht
27.10.2014

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

UriFactoryInterface.php

Zuletzt modifiziert: 09.10.2024, 12:59 - Dateigröße: 997.00 Bytes


01  <?php
02  namespace OAuth\Common\Http\Uri;
03   
04  /**
05   * Factory interface for uniform resource indicators
06   */
07  interface UriFactoryInterface
08  {
09      /**
10       * Factory method to build a URI from a super-global $_SERVER array.
11       *
12       * @abstract
13       * @param array $_server
14       * @return UriInterface
15       */
16      public function createFromSuperGlobalArray(array $_server);
17   
18      /**
19       * Creates a URI from an absolute URI
20       *
21       * @abstract
22       * @param string $absoluteUri
23       * @return UriInterface
24       */
25      public function createFromAbsolute($absoluteUri);
26   
27      /**
28       * Factory method to build a URI from parts
29       *
30       * @abstract
31       * @param string $scheme
32       * @param string $userInfo
33       * @param string $host
34       * @param string $port
35       * @param string $path
36       * @param string $query
37       * @param string $fragment
38       * @return UriInterface
39       */
40      public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = '');
41  }
42