define_constants();
$this->includes();
$this->init_hooks();
add_action( 'plugins_loaded', array( $this, 'objects' ), 1 );
add_action( 'in_plugin_update_message-' . UR_PLUGIN_BASENAME, array( __CLASS__, 'in_plugin_update_message' ) );
do_action( 'user_registration_loaded' );
}
/**
* Hook into actions and filters.
*/
private function init_hooks() {
register_activation_hook( __FILE__, array( 'UR_Install', 'install' ) );
register_shutdown_function( array( $this, 'log_errors' ) );
add_action( 'after_setup_theme', array( $this, 'include_template_functions' ), 11 );
add_action( 'init', array( $this, 'init' ), 0 );
add_action( 'init', array( 'UR_Shortcodes', 'init' ) );
add_filter( 'plugin_action_links_' . UR_PLUGIN_BASENAME, array( __CLASS__, 'plugin_action_links' ) );
add_filter( 'plugin_row_meta', array( __CLASS__, 'plugin_row_meta' ), 10, 2 );
}
/**
* Ensures fatal errors are logged so they can be picked up in the status report.
*
* @since 3.0.5
*/
public function log_errors() {
$error = error_get_last();
if ( $error && in_array( $error['type'], array( E_ERROR, E_PARSE, E_COMPILE_ERROR, E_USER_ERROR, E_RECOVERABLE_ERROR ), true ) ) {
$logger = ur_get_logger();
$logger->critical(
/* translators: 1: error message 2: file name and path 3: line number */
sprintf( __( '%1$s in %2$s on line %3$s', 'user-registration' ), $error['message'], $error['file'], $error['line'] ) . PHP_EOL,
array(
'source' => 'fatal-errors',
)
);
}
}
/**
* Define FT Constants.
*/
private function define_constants() {
$upload_dir = apply_filters( 'user_registration_upload_dir', wp_upload_dir() );
$this->define( 'UR_LOG_DIR', $upload_dir['basedir'] . '/ur-logs/' );
$this->define( 'UR_UPLOAD_PATH', $upload_dir['basedir'] . '/user_registration_uploads/' );
$this->define( 'UR_UPLOAD_URL', $upload_dir['baseurl'] . '/user_registration_uploads/' );
$this->define( 'UR_DS', DIRECTORY_SEPARATOR );
$this->define( 'UR_PLUGIN_FILE', __FILE__ );
$this->define( 'UR_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
$this->define( 'UR_ASSETS_URL', UR_PLUGIN_URL . 'assets' );
$this->define( 'UR_ABSPATH', __DIR__ . UR_DS );
$this->define( 'UR_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
$this->define( 'UR_VERSION', $this->version );
$this->define( 'UR_TEMPLATE_DEBUG_MODE', false );
$this->define( 'UR_FORM_PATH', UR_ABSPATH . 'includes' . UR_DS . 'form' . UR_DS );
$this->define( 'UR_SESSION_CACHE_GROUP', 'ur_session_id' );
$this->define( 'UR_PRO_ACTIVE', false );
}
/**
* Define constant if not already set.
*
* @param string $name Name.
* @param string|bool $value Value.
*/
private function define( $name, $value ) {
if ( ! defined( $name ) ) {
define( $name, $value );
}
}
/**
* What type of request is this?
*
* @param string $type admin, ajax, cron or frontend.
* @return bool
*/
private function is_request( $type ) {
switch ( $type ) {
case 'admin':
return is_admin();
case 'ajax':
return defined( 'DOING_AJAX' );
case 'cron':
return defined( 'DOING_CRON' );
case 'frontend':
return ( ! is_admin() || defined( 'DOING_AJAX' ) ) && ! defined( 'DOING_CRON' );
}
}
/**
* Includes.
*/
private function includes() {
/**
* Class autoloader.
*/
include_once UR_ABSPATH . 'includes/class-ur-autoloader.php';
/**
* Interfaces.
*/
include_once UR_ABSPATH . 'includes/interfaces/class-ur-logger-interface.php';
include_once UR_ABSPATH . 'includes/interfaces/class-ur-log-handler-interface.php';
/**
* Abstract classes
*/
include_once UR_ABSPATH . 'includes/abstracts/abstract-ur-form-field.php';
include_once UR_ABSPATH . 'includes/abstracts/abstract-ur-field-settings.php';
include_once UR_ABSPATH . 'includes/abstracts/abstract-ur-log-handler.php';
include_once UR_ABSPATH . 'includes/abstracts/abstract-ur-session.php';
/**
* Core classes.
*/
include_once UR_ABSPATH . 'includes/functions-ur-core.php';
include_once UR_ABSPATH . 'modules/functions-ur-modules.php';
include_once UR_ABSPATH . 'includes/functions-ur-form.php';
include_once UR_ABSPATH . 'includes/class-ur-install.php';
include_once UR_ABSPATH . 'includes/class-ur-post-types.php'; // Registers post types.
include_once UR_ABSPATH . 'includes/class-ur-user-approval.php';
include_once UR_ABSPATH . 'includes/class-ur-smart-tags.php'; // User Approval class.
include_once UR_ABSPATH . 'includes/class-ur-emailer.php';
include_once UR_ABSPATH . 'includes/class-ur-ajax.php';
include_once UR_ABSPATH . 'includes/class-ur-query.php';
include_once UR_ABSPATH . 'includes/class-ur-email-confirmation.php';
include_once UR_ABSPATH . 'includes/class-ur-email-approval.php';
include_once UR_ABSPATH . 'includes/class-ur-privacy.php';
include_once UR_ABSPATH . 'includes/class-ur-form-block.php';
include_once UR_ABSPATH . 'includes/class-ur-cache-helper.php';
/**
* Block classes.
*/
include_once UR_ABSPATH . 'includes/blocks/class-ur-blocks.php';
include_once UR_ABSPATH . 'includes/blocks/block-types/class-ur-block-abstract.php';
include_once UR_ABSPATH . 'includes/blocks/block-types/class-ur-block-registration-form.php';
include_once UR_ABSPATH . 'includes/blocks/block-types/class-ur-block-login-form.php';
include_once UR_ABSPATH . 'includes/blocks/block-types/class-ur-block-myaccount.php';
include_once UR_ABSPATH . 'includes/blocks/block-types/class-ur-block-edit-profile.php';
include_once UR_ABSPATH . 'includes/blocks/block-types/class-ur-block-edit-password.php';
// Validation classes.
include_once UR_ABSPATH . 'includes/validation/class-ur-validation.php';
include_once UR_ABSPATH . 'includes/validation/class-ur-form-validation.php';
include_once UR_ABSPATH . 'includes/validation/class-ur-setting-validation.php';
include_once UR_ABSPATH . 'includes/RestApi/class-ur-rest-api.php';
/**
* Config classes.
*/
include_once UR_ABSPATH . 'includes/admin/class-ur-config.php';
if ( ur_check_module_activation( 'membership' ) ) {
/** include modules */
include_once UR_ABSPATH . 'modules/membership/user-registration-membership.php';
}
if ( ( ur_check_module_activation( 'membership' ) || ur_check_module_activation( 'payments' ) ) && ur_check_module_activation( 'payment-history' ) ) {
include_once UR_ABSPATH . 'modules/payment-history/Orders.php';
}
if ( ur_check_module_activation( 'content-restriction' ) ) {
include_once UR_ABSPATH . 'modules/content-restriction/user-registration-content-restriction.php';
include_once UR_ABSPATH . 'includes/blocks/block-types/class-ur-block-content-restriction.php';
}
/**
* Elementor classes.
*/
if ( class_exists( '\Elementor\Plugin' ) ) {
include_once UR_ABSPATH . 'includes/3rd-party/elementor/class-ur-elementor.php';
}
/**
* Oxygen classes.
*/
if ( in_array( 'oxygen/functions.php', get_option( 'active_plugins', array() ), true ) ) {
include_once UR_ABSPATH . 'includes/3rd-party/oxygen/class-ur-oxygen.php';
}
/**
* Plugin/Addon Updater.
*/
include_once UR_ABSPATH . 'includes/class-ur-plugin-updater.php';
if ( $this->is_request( 'admin' ) ) {
include_once UR_ABSPATH . 'includes/admin/class-ur-admin.php';
include_once UR_ABSPATH . 'includes/abstracts/abstract-ur-meta-boxes.php';
include_once UR_ABSPATH . 'includes/admin/class-ur-admin-embed-wizard.php';
}
if ( $this->is_request( 'frontend' ) ) {
$this->frontend_includes();
}
if ( $this->is_request( 'frontend' ) || $this->is_request( 'cron' ) ) {
include_once UR_ABSPATH . 'includes/class-ur-session-handler.php';
}
include_once UR_ABSPATH . 'includes/class-ur-cron.php';
include_once UR_ABSPATH . 'includes/stats/class-ur-stats.php';
$this->query = new UR_Query();
}
/**
* Include required frontend files.
*/
public function frontend_includes() {
include_once UR_ABSPATH . 'includes/functions-ur-notice.php';
include_once UR_ABSPATH . 'includes/class-ur-form-handler.php'; // Form Handlers.
include_once UR_ABSPATH . 'includes/class-ur-frontend-scripts.php'; // Frontend Scripts.
include_once UR_ABSPATH . 'includes/frontend/class-ur-frontend.php';
include_once UR_ABSPATH . 'includes/class-ur-preview.php';
}
/**
* Function used to Init UserRegistration Template Functions - This makes them pluggable by plugins and themes.
*/
public function include_template_functions() {
include_once UR_ABSPATH . 'includes/functions-ur-template.php';
}
/**
* Setup Objects.
*
* @since 1.7.2
*/
public function objects() {
$this->form = new UR_Form_Handler();
}
/**
* Init UserRegistration when WordPress Initialises.
*/
public function init() {
// Before init action.
do_action( 'before_user_registration_init' );
// Set up localisation.
$this->load_plugin_textdomain();
// Session class, handles session data for users - can be overwritten if custom handler is needed.
if ( $this->is_request( 'frontend' ) || $this->is_request( 'cron' ) || $this->is_request( 'admin' ) ) {
$session_class = apply_filters( 'user_registration_session_handler', 'UR_Session_Handler' );
$this->session = new $session_class();
}
// Init action.
do_action( 'user_registration_init' );
}
/**
* Load Localisation files.
*
* Note: the first-loaded translation file overrides any following ones if the same translation is present.
*
* Locales found in:
* - WP_LANG_DIR/user-registration/user-registration-LOCALE.mo
* - WP_LANG_DIR/plugins/user-registration-LOCALE.mo
*/
public function load_plugin_textdomain() {
$locale = is_admin() && function_exists( 'get_user_locale' ) ? get_user_locale() : get_locale();
$locale = apply_filters( 'plugin_locale', $locale, 'user-registration' );
unload_textdomain( 'user-registration', true );
load_textdomain( 'user-registration', WP_LANG_DIR . '/user-registration/user-registration-' . $locale . '.mo' );
load_plugin_textdomain( 'user-registration', false, plugin_basename( __DIR__ ) . '/languages' );
}
/**
* Get the plugin url.
*
* @return string
*/
public function plugin_url() {
return untrailingslashit( plugins_url( '/', __FILE__ ) );
}
/**
* Get the plugin path.
*
* @return string
*/
public function plugin_path() {
return untrailingslashit( plugin_dir_path( __FILE__ ) );
}
/**
* Get the template path.
*
* @return string
*/
public function template_path() {
return apply_filters( 'user_registration_template_path', 'user-registration/' );
}
/**
* Get Ajax URL.
*
* @return string
*/
public function ajax_url() {
return admin_url( 'admin-ajax.php', 'relative' );
}
/**
* Display action links in the Plugins list table.
*
* @param array $actions Plugin Action links.
* @return array
*/
public static function plugin_action_links( $actions ) {
$new_actions = array(
'settings' => '' . esc_html__( 'Settings', 'user-registration' ) . '',
);
return array_merge( $new_actions, $actions );
}
/**
* Display row meta in the Plugins list table.
*
* @param array $plugin_meta Plugin Row Meta.
* @param string $plugin_file Plugin Row Meta.
* @return array
*/
public static function plugin_row_meta( $plugin_meta, $plugin_file ) {
if ( UR_PLUGIN_BASENAME === $plugin_file ) {
$new_plugin_meta = array(
'docs' => '' . esc_html__( 'Docs', 'user-registration' ) . '',
'support' => '' . __( 'Free support', 'user-registration' ) . '',
);
return array_merge( $plugin_meta, $new_plugin_meta );
}
return (array) $plugin_meta;
}
/**
* Filter for _doing_it_wrong() calls.
*
* @since 3.3.5.2
*
* @param bool|mixed $trigger Whether to trigger the error for _doing_it_wrong() calls. Default true.
* @param string $function_name The function that was called.
* @param string $message A message explaining what has been done incorrectly.
* @param string $version The version of WordPress where the message was added.
*
* @return bool
*/
public function ur_filter_doing_it_wrong_trigger_error( $trigger, $function_name, $message, $version ) {
$trigger = (bool) $trigger;
$function_name = (string) $function_name;
$message = (string) $message;
$is_trigger_for_user_registration = $function_name === '_load_textdomain_just_in_time' && strpos( $message, ' $1user-registration' ) !== false;
return $is_trigger_for_user_registration ? false : $trigger;
}
/**
* Update notice
*
* @param array $args Plugin args.
*/
public static function in_plugin_update_message( $args ) {
$transient_name = 'ur_upgrade_notice_' . $args['Version'];
$upgrade_notice = get_transient( $transient_name );
if ( false === $upgrade_notice ) {
$response = wp_safe_remote_get( 'https://plugins.svn.wordpress.org/user-registration/trunk/readme.txt' );
if ( ! is_wp_error( $response ) && ! empty( $response['body'] ) ) {
$upgrade_notice = self::parse_update_notice( $response['body'], $args['new_version'] );
set_transient( $transient_name, $upgrade_notice, DAY_IN_SECONDS );
}
}
echo wp_kses_post( $upgrade_notice );
}
/**
* Parse update notice from readme.
*
* @param string $content Readme content.
* @param string $new_version New version.
*/
private static function parse_update_notice( $content, $new_version ) {
// Output Upgrade Notice.
$matches = null;
$regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( UR_VERSION ) . '\s*=|$)~Uis';
$upgrade_notice = '';
if ( preg_match( $regexp, $content, $matches ) ) {
$version = trim( $matches[1] );
$notices = (array) preg_split( '~[\r\n]+~', trim( $matches[2] ) );
// Check the latest stable version and ignore trunk.
if ( $version === $new_version && version_compare( UR_VERSION, $version, '<' ) ) {
$upgrade_notice .= '|