| Server IP : 172.67.166.150 / Your IP : 216.73.217.79 Web Server : LiteSpeed System : Linux pbn-16.isgood.host 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gamenohushop ( 1160) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/local/lsws/gamenohu.shop/html/wp-content/plugins/wps-hide-login/classes/ |
Upload File : |
<?php
namespace WPS\WPS_Hide_Login;
/**
* Singleton base class for having singleton implementation
* This allows you to have only one instance of the needed object
* You can get the instance with
* $class = My_Class::get_instance();
*
* /!\ The get_instance method have to be implemented !
*
* Class Singleton
* @package WPS\WPS_Hide_Login
*/
trait Singleton {
/**
* @var self
*/
protected static $instance;
/**
* @return self
*/
final public static function get_instance() {
if ( is_null( self::$instance ) ) {
self::$instance = new static;
}
return self::$instance;
}
/**
* Constructor protected from the outside
*/
private function __construct() {
$this->init();
}
/**
* Add init function by default
* Implement this method in your child class
* If you want to have actions send at construct
*/
protected function init() {}
/**
* prevent the instance from being cloned
*
* @return void
*/
final public function __clone() {
}
/**
* prevent from being unserialized
*
* @return void
*/
final public function __wakeup() {
}
}