mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
- fixed user registration;
- phpDoc;
This commit is contained in:
@@ -5,12 +5,23 @@ namespace um\core;
|
||||
if ( ! defined( 'ABSPATH' ) ) exit;
|
||||
|
||||
if ( ! class_exists( 'Options' ) ) {
|
||||
|
||||
|
||||
/**
|
||||
* Class Options
|
||||
* @package um\core
|
||||
*/
|
||||
class Options {
|
||||
|
||||
var $options = array();
|
||||
|
||||
/**
|
||||
* Access constructor.
|
||||
* @var array
|
||||
*/
|
||||
var $options = array();
|
||||
|
||||
|
||||
/**
|
||||
* Options constructor.
|
||||
*/
|
||||
function __construct() {
|
||||
$this->init_variables();
|
||||
|
||||
Reference in New Issue
Block a user