Verzeichnisstruktur phpBB-3.2.0


Veröffentlicht
06.01.2017

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

base.php

Zuletzt modifiziert: 09.10.2024, 12:54 - Dateigröße: 1.37 KiB


001  <?php
002  /**
003  *
004  * This file is part of the phpBB Forum Software package.
005  *
006  * @copyright (c) phpBB Limited <https://www.phpbb.com>
007  * @license GNU General Public License, version 2 (GPL-2.0)
008  *
009  * For full copyright and license information, please see
010  * the docs/CREDITS.txt file.
011  *
012  */
013   
014  namespace phpbb\auth\provider;
015   
016  /**
017  * Base authentication provider class that all other providers should implement
018  */
019  abstract class base implements \phpbb\auth\provider\provider_interface
020  {
021      /**
022      * {@inheritdoc}
023      */
024      public function init()
025      {
026          return;
027      }
028   
029      /**
030      * {@inheritdoc}
031      */
032      public function autologin()
033      {
034          return;
035      }
036   
037      /**
038      * {@inheritdoc}
039      */
040      public function acp()
041      {
042          return;
043      }
044   
045      /**
046      * {@inheritdoc}
047      */
048      public function get_acp_template($new_config)
049      {
050          return;
051      }
052   
053      /**
054      * {@inheritdoc}
055      */
056      public function get_login_data()
057      {
058          return;
059      }
060   
061      /**
062      * {@inheritdoc}
063      */
064      public function get_auth_link_data($user_id = 0)
065      {
066          return;
067      }
068   
069      /**
070      * {@inheritdoc}
071      */
072      public function logout($data, $new_session)
073      {
074          return;
075      }
076   
077      /**
078      * {@inheritdoc}
079      */
080      public function validate_session($user)
081      {
082          return;
083      }
084   
085      /**
086      * {@inheritdoc}
087      */
088      public function login_link_has_necessary_data($login_link_data)
089      {
090          return;
091      }
092   
093      /**
094      * {@inheritdoc}
095      */
096      public function link_account(array $link_data)
097      {
098          return;
099      }
100   
101      /**
102      * {@inheritdoc}
103      */
104      public function unlink_account(array $link_data)
105      {
106          return;
107      }
108  }
109