PluginProbe ʕ •ᴥ•ʔ
CloudSecure WP Security / 1.3.21
CloudSecure WP Security v1.3.21
1.4.10 1.4.9 trunk 0.9.0 1.0.2 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.3.1 1.3.10 1.3.11 1.3.12 1.3.13 1.3.14 1.3.15 1.3.16 1.3.17 1.3.18 1.3.19 1.3.2 1.3.20 1.3.21 1.3.22 1.3.23 1.3.24 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8
cloudsecure-wp-security / cloudsecure-wp.php
cloudsecure-wp-security Last commit date
assets 7 months ago log 2 years ago modules 7 months ago really-simple-captcha 1 year ago LICENSE.txt 2 years ago cloudsecure-wp.php 7 months ago readme.txt 7 months ago uninstall.php 1 year ago
cloudsecure-wp.php
69 lines
1 <?php
2 /**
3 * The plugin bootstrap file
4 *
5 * 管理画面とログインURLをサイバー攻撃から守る、安心の国産・日本語対応プラグインです。
6 * かんたんな設定を行うだけで、不正アクセスや不正ログインからあなたのWordPressを保護し、セキュリティが向上します。
7 * また、各機能の有効・無効(ON・OFF)や設定などをお好みにカスタマイズし、いつでも保護状�
8 �を管理できます。
9 *
10 * @link https://wpplugin.cloudsecure.ne.jp/cloudsecure_wp_security
11 * @package CloudSecure_WP_Security
12 *
13 * @wordpress-plugin
14 * Plugin Name: CloudSecure WP Security
15 * Plugin URI: https://wpplugin.cloudsecure.ne.jp/cloudsecure_wp_security
16 * Description: 管理画面とログインURLをサイバー攻撃から守る、安心の国産・日本語対応プラグインです。かんたんな設定を行うだけで、不正アクセスや不正ログインからあなたのWordPressを保護し、セキュリティが向上します。また、各機能の有効・無効(ON・OFF)や設定などをお好みにカスタマイズし、いつでも保護状�
17 �を管理できます。
18 * Version: 1.3.21
19 * Requires PHP: 7.1
20 * Author: CloudSecure,Inc.
21 * Author URI: https://cloudsecure.co.jp
22 * License: GPLv2 or later
23 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
24 * Text Domain: cloudsecure_wp_security
25 */
26
27 if ( ! defined( 'ABSPATH' ) ) {
28 exit;
29 }
30
31 $cloudsecurewp_info_datas = array(
32 'version' => 'Version',
33 'plugin_name' => 'Plugin Name',
34 'text_domain' => 'Text Domain',
35 );
36
37 $cloudsecurewp_info = get_file_data( __FILE__, $cloudsecurewp_info_datas );
38 $cloudsecurewp_info['plugin_path'] = plugin_dir_path( __FILE__ );
39 $cloudsecurewp_info['plugin_url'] = plugin_dir_url( __FILE__ );
40
41 require_once 'modules/cloudsecure-wp.php';
42 global $cloudsecurewp;
43
44 $cloudsecurewp = new CloudSecureWP( $cloudsecurewp_info );
45 $cloudsecurewp->run();
46
47 // WP-CLI コマンドの読み込み
48 if ( defined( 'WP_CLI' ) && WP_CLI ) {
49 require_once 'modules/cli/class-cloudsecure-wp-cli.php';
50 }
51
52 /**
53 * プラグイン有効化時の処理
54 */
55 function cloudsecurewp_activate() {
56 global $cloudsecurewp;
57 $cloudsecurewp->activate();
58 }
59 register_activation_hook( __FILE__, 'cloudsecurewp_activate' );
60
61 /**
62 * プラグイン無効化時の処理
63 */
64 function cloudsecurewp_deactivate() {
65 global $cloudsecurewp;
66 $cloudsecurewp->deactivate();
67 }
68 register_deactivation_hook( __FILE__, 'cloudsecurewp_deactivate' );
69