diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-08-02 14:05:09 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-08-02 14:05:44 -0400 |
commit | 245e71e4e20b8d4ec80fc5e059dc12db51d10651 (patch) | |
tree | e77402c16215a38b0a631b2aedde4463d73e6df1 /phpBB/phpbb/auth/provider/interface.php | |
parent | 381e7c347b0d7cfc0f02d677aa61b92701606504 (diff) | |
download | forums-245e71e4e20b8d4ec80fc5e059dc12db51d10651.tar forums-245e71e4e20b8d4ec80fc5e059dc12db51d10651.tar.gz forums-245e71e4e20b8d4ec80fc5e059dc12db51d10651.tar.bz2 forums-245e71e4e20b8d4ec80fc5e059dc12db51d10651.tar.xz forums-245e71e4e20b8d4ec80fc5e059dc12db51d10651.zip |
[feature/oauth] Add get_login_data to the auth_provider_interface
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth/provider/interface.php')
-rw-r--r-- | phpBB/phpbb/auth/provider/interface.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/phpBB/phpbb/auth/provider/interface.php b/phpBB/phpbb/auth/provider/interface.php index fd3fa7d879..21526fd858 100644 --- a/phpBB/phpbb/auth/provider/interface.php +++ b/phpBB/phpbb/auth/provider/interface.php @@ -107,6 +107,27 @@ interface phpbb_auth_provider_interface public function get_acp_template($new_config); /** + * Returns an array of data necessary to build custom elements on the login + * form. + * + * @return array|null If this function is not implemented on an auth + * provider then it returns null. If it is implemented + * it will return an array of up to four elements of + * which only 'TEMPLATE_FILE'. If 'BLOCK_VAR_NAME' is + * present then 'BLOCK_VARS' must also be present in + * the array. The fourth element 'VARS' is also + * optional. The array, with all four elements present + * looks like the following: + * array( + * 'TEMPLATE_FILE' => string, + * 'BLOCK_VAR_NAME' => string, + * 'BLOCK_VARS' => array(...), + * 'VARS' => array(...), + * ) + */ + public function get_login_data(); + + /** * Performs additional actions during logout. * * @param array $data An array corresponding to |