PluginProbe ʕ •ᴥ•ʔ
CloudSecure WP Security / 1.3.10
CloudSecure WP Security v1.3.10
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 1 year ago log 2 years ago modules 1 year ago really-simple-captcha 1 year ago LICENSE.txt 2 years ago cloudsecure-wp.php 1 year ago readme.txt 1 year ago uninstall.php 1 year ago
cloudsecure-wp.php
64 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.10
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 /**
48 * プラグイン有効化時の処理
49 */
50 function cloudsecurewp_activate() {
51 global $cloudsecurewp;
52 $cloudsecurewp->activate();
53 }
54 register_activation_hook( __FILE__, 'cloudsecurewp_activate' );
55
56 /**
57 * プラグイン無効化時の処理
58 */
59 function cloudsecurewp_deactivate() {
60 global $cloudsecurewp;
61 $cloudsecurewp->deactivate();
62 }
63 register_deactivation_hook( __FILE__, 'cloudsecurewp_deactivate' );
64