init web ems all
This commit is contained in:
16
phpMyAdmin/vendor/pragmarx/google2fa/src/Support/Url.php
vendored
Executable file
16
phpMyAdmin/vendor/pragmarx/google2fa/src/Support/Url.php
vendored
Executable file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace PragmaRX\Google2FA\Support;
|
||||
|
||||
class Url
|
||||
{
|
||||
public static function generateGoogleQRCodeUrl($domain, $page, $queryParameters, $qrCodeUrl)
|
||||
{
|
||||
$url = $domain.
|
||||
rawurlencode($page).
|
||||
'?'.$queryParameters.
|
||||
urlencode($qrCodeUrl);
|
||||
|
||||
return $url;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user