| Server IP : 65.108.144.40 / Your IP : 216.73.217.165 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : dev ( 1000) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/education/wp-content/plugins/aurric-user/ |
Upload File : |
<?php
/**
* @wordpress-plugin
* Plugin Name: Aurric User
* Description: This plugin will create a custom login/register/forgotpassword pages
* Version: 1.0.0
* Author: Aurric 9
* Author URI: http://aurric9.com/
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: aurric-user
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
define( 'AURRIC_USER', 'aurric-user' );
define( 'AURRIC_USER_VER', '1.0.0' );
define( 'AURRIC_USER_URL', plugin_dir_url( __FILE__ ) );
define( 'AURRIC_USER_PATH', plugin_dir_path( __FILE__ ) );
/**
* Store plugin base dir, for easier access later from other classes.
* (eg. Include, pubic or admin)
*/
define( 'AURRIC_USER_BASE_DIR', plugin_dir_path( __FILE__ ) );
/********************************************
* RUN CODE ON PLUGIN UPGRADE AND ADMIN NOTICE
*
* @tutorial run_code_on_plugin_upgrade_and_admin_notice.php
*/
define( 'AURRIC_USER_BASE_NAME', plugin_basename( __FILE__ ) );
// RUN CODE ON PLUGIN UPGRADE AND ADMIN NOTICE