Initial Commit
This commit is contained in:
30
inc/domain-mapping/class-sso.php
Normal file
30
inc/domain-mapping/class-sso.php
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* Deprecated Single Sign-On.
|
||||
*
|
||||
* This file is here to prevent fatal errors from
|
||||
* being thrown when updating from versions before 2.0.11
|
||||
* to versions after 2.0.11.
|
||||
*
|
||||
* @deprecated
|
||||
* @see \WP_Ultimo\SSO
|
||||
* @package WP_Ultimo\Domain_Mapping\SSO
|
||||
* @since 2.0.0
|
||||
*/
|
||||
|
||||
namespace WP_Ultimo\Domain_Mapping\SSO;
|
||||
|
||||
// Exit if accessed directly
|
||||
defined('ABSPATH') || exit;
|
||||
|
||||
/**
|
||||
* Handles Sign-sign on.
|
||||
*
|
||||
* @deprecated
|
||||
* @since 2.0.0
|
||||
*/
|
||||
class SSO {
|
||||
|
||||
use \WP_Ultimo\Traits\Singleton;
|
||||
|
||||
} // end class SSO;
|
Reference in New Issue
Block a user