| @@ -3,9 +3,9 @@ | ||
| 3 | 3 | /** |
| 4 | 4 | * Plugin Name: Passster |
| 5 | 5 | * Plugin URI: https://passster.com/ |
| 6 | 6 | * Description: A simple plugin to password-protect your complete website, some pages/posts or just parts of your content. |
| 7 | - * Version: 4.3.7 | |
| 7 | + * Version: 4.3.15 | |
| 8 | 8 | * Author: WPChill |
| 9 | 9 | * Author URI: https://wpchill.com |
| 10 | 10 | * License: GPL-2.0+ |
| 11 | 11 | * License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
| @@ -18,9 +18,9 @@ | ||
| 18 | 18 | * Patrick Posner transferred ownership rights on: 6th of December, 2024 when ownership was handed over to WPChill |
| 19 | 19 | */ |
| 20 | 20 | define( 'PASSSTER_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) ); |
| 21 | 21 | define( 'PASSSTER_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) ); |
| 22 | -define( 'PASSSTER_VERSION', '4.3.7' ); | |
| 22 | +define( 'PASSSTER_VERSION', '4.3.15' ); | |
| 23 | 23 | // run plugin. |
| 24 | 24 | if ( !function_exists( 'passster_run_plugin' ) ) { |
| 25 | 25 | add_action( 'plugins_loaded', 'passster_run_plugin' ); |
| 26 | 26 | /** |
| @@ -37,8 +37,9 @@ | ||
| 37 | 37 | require_once PASSSTER_PATH . '/inc/class-ps-public.php'; |
| 38 | 38 | require_once PASSSTER_PATH . '/inc/class-ps-migrator.php'; |
| 39 | 39 | require_once PASSSTER_PATH . '/inc/class-ps-block-editor.php'; |
| 40 | 40 | require_once PASSSTER_PATH . '/inc/class-ps-rest-handler.php'; |
| 41 | + require_once PASSSTER_PATH . '/inc/class-ps-protected-areas-rest-controller.php'; | |
| 41 | 42 | require_once PASSSTER_PATH . '/inc/class-ps-rest-api.php'; |
| 42 | 43 | require_once PASSSTER_PATH . '/inc/class-ps-protected-posts.php'; |
| 43 | 44 | require_once PASSSTER_PATH . '/inc/class-ps-category-lock.php'; |
| 44 | 45 | // admin. |