[ Index ] |
PHP Cross Reference of phpBB-3.1.12-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * This file is part of the phpBB Forum Software package. 5 * 6 * @copyright (c) phpBB Limited <https://www.phpbb.com> 7 * @license GNU General Public License, version 2 (GPL-2.0) 8 * 9 * For full copyright and license information, please see 10 * the docs/CREDITS.txt file. 11 * 12 */ 13 14 namespace phpbb\auth\provider; 15 16 /** 17 * Base authentication provider class that all other providers should implement 18 */ 19 abstract class base implements \phpbb\auth\provider\provider_interface 20 { 21 /** 22 * {@inheritdoc} 23 */ 24 public function init() 25 { 26 return; 27 } 28 29 /** 30 * {@inheritdoc} 31 */ 32 public function autologin() 33 { 34 return; 35 } 36 37 /** 38 * {@inheritdoc} 39 */ 40 public function acp() 41 { 42 return; 43 } 44 45 /** 46 * {@inheritdoc} 47 */ 48 public function get_acp_template($new_config) 49 { 50 return; 51 } 52 53 /** 54 * {@inheritdoc} 55 */ 56 public function get_login_data() 57 { 58 return; 59 } 60 61 /** 62 * {@inheritdoc} 63 */ 64 public function get_auth_link_data($user_id = 0) 65 { 66 return; 67 } 68 69 /** 70 * {@inheritdoc} 71 */ 72 public function logout($data, $new_session) 73 { 74 return; 75 } 76 77 /** 78 * {@inheritdoc} 79 */ 80 public function validate_session($user) 81 { 82 return; 83 } 84 85 /** 86 * {@inheritdoc} 87 */ 88 public function login_link_has_necessary_data($login_link_data) 89 { 90 return; 91 } 92 93 /** 94 * {@inheritdoc} 95 */ 96 public function link_account(array $link_data) 97 { 98 return; 99 } 100 101 /** 102 * {@inheritdoc} 103 */ 104 public function unlink_account(array $link_data) 105 { 106 return; 107 } 108 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Jan 11 00:25:41 2018 | Cross-referenced by PHPXref 0.7.1 |