wp-user-avatar
Last commit date
assets
2 weeks ago
deprecated
1 year ago
languages
1 day ago
src
1 day ago
third-party
1 day ago
autoloader.php
1 year ago
changelog.txt
1 day ago
index.php
5 years ago
readme.txt
1 day ago
uninstall.php
2 years ago
wp-user-avatar.php
1 day ago
wpml-config.xml
9 months ago
wp-user-avatar.php
27 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Plugin Name: ProfilePress |
| 4 | * Plugin URI: https://profilepress.com |
| 5 | * Description: The modern WordPress membership and user profile plugin. |
| 6 | * Version: 4.16.19 |
| 7 | * Author: ProfilePress Membership Team |
| 8 | * Author URI: https://profilepress.com |
| 9 | * Text Domain: wp-user-avatar |
| 10 | * Domain Path: /languages |
| 11 | */ |
| 12 | |
| 13 | defined('ABSPATH') or die("No script kiddies please!"); |
| 14 | |
| 15 | define('PROFILEPRESS_SYSTEM_FILE_PATH', __FILE__); |
| 16 | define('PPRESS_VERSION_NUMBER', '4.16.19'); |
| 17 | |
| 18 | if ( ! defined('PPRESS_STRIPE_API_VERSION')) { |
| 19 | define('PPRESS_STRIPE_API_VERSION', '2024-06-20'); |
| 20 | } |
| 21 | |
| 22 | require __DIR__ . '/autoloader.php'; |
| 23 | require __DIR__ . '/third-party/vendor/autoload.php'; |
| 24 | |
| 25 | do_action('ppress_core_pre_init'); |
| 26 | |
| 27 | ProfilePress\Core\Base::get_instance(); |