You are here

public static function MoAuthUtilities::mo_auth_get_url_parts in Google Authenticator / 2 Factor Authentication - 2FA 7

Return current URL parts.

2 calls to MoAuthUtilities::mo_auth_get_url_parts()
mo_auth_configure_google_authenticator in ./configure_google_authenticator.inc
mo_auth_test_google_authenticator in ./test_google_authenticator.inc
Menu callback for email verification.

File

classes/Utilities.php, line 303
This file is part of miniOrange 2FA module.

Class

MoAuthUtilities
@file This file is part of miniOrange 2FA module.

Code

public static function mo_auth_get_url_parts() {
  $query_param = current_path();
  $url_parts = explode('/', $query_param);
  return $url_parts;
}