mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
initial commit
This commit is contained in:
28
html/phpmyad/examples/signon-script.php
Normal file
28
html/phpmyad/examples/signon-script.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||
/**
|
||||
* Single signon for phpMyAdmin
|
||||
*
|
||||
* This is just example how to use script based single signon with
|
||||
* phpMyAdmin, it is not intended to be perfect code and look, only
|
||||
* shows how you can integrate this functionality in your application.
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
* @subpackage Example
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* This function returns username and password.
|
||||
*
|
||||
* It can optionally use configured username as parameter.
|
||||
*
|
||||
* @param string $user
|
||||
* @return array
|
||||
*/
|
||||
function get_login_credentials($user)
|
||||
{
|
||||
return array('root', '');
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user