PluginProbe ʕ •ᴥ•ʔ
CloudSecure WP Security / 1.1.0
CloudSecure WP Security v1.1.0
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 2 years ago log 2 years ago modules 2 years ago really-simple-captcha 2 years ago LICENSE.txt 2 years ago cloudsecure-wp.php 2 years ago readme.txt 2 years ago uninstall.php 2 years ago
cloudsecure-wp.php
63 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.1.0
19 * Author: CloudSecure,Inc.
20 * Author URI: https://cloudsecure.co.jp
21 * License: GPLv2 or later
22 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
23 * Text Domain: cloudsecure_wp_security
24 */
25
26 if ( ! defined( 'ABSPATH' ) ) {
27 exit;
28 }
29
30 $cloudsecurewp_info_datas = array(
31 'version' => 'Version',
32 'plugin_name' => 'Plugin Name',
33 'text_domain' => 'Text Domain',
34 );
35
36 $cloudsecurewp_info = get_file_data( __FILE__, $cloudsecurewp_info_datas );
37 $cloudsecurewp_info['plugin_path'] = plugin_dir_path( __FILE__ );
38 $cloudsecurewp_info['plugin_url'] = plugin_dir_url( __FILE__ );
39
40 require_once 'modules/cloudsecure-wp.php';
41 global $cloudsecurewp;
42
43 $cloudsecurewp = new CloudSecureWP( $cloudsecurewp_info );
44 $cloudsecurewp->run();
45
46 /**
47 * プラグイン有効化時の処理
48 */
49 function cloudsecurewp_activate() {
50 global $cloudsecurewp;
51 $cloudsecurewp->activate();
52 }
53 register_activation_hook( __FILE__, 'cloudsecurewp_activate' );
54
55 /**
56 * プラグイン無効化時の処理
57 */
58 function cloudsecurewp_deactivate() {
59 global $cloudsecurewp;
60 $cloudsecurewp->deactivate();
61 }
62 register_deactivation_hook( __FILE__, 'cloudsecurewp_deactivate' );
63