PluginProbe
XO Security / 3.7.1
XO Security v3.7.1
2.2.0 2.2.1 2.3.0 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.5.7 2.6.0 2.6.1 2.6.2 2.6.3 2.7.0 2.7.1 2.7.2 2.8.0 2.9.0 3.0.0 3.1.0 3.1.1 All 84 releases
xo-security / xo-security.php

xo-security.php in XO Security 3.7.1, at xo-security.php

37 lines 1016 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * XO Security plugin for WordPress
4 *
5 * @package xo-security
6 * @author ishitaka
7 * @license GPL-2.0-or-later
8 *
9 * @wordpress-plugin
10 * Plugin Name: XO Security
11 * Plugin URI: https://xakuro.com/wordpress/xo-security/
12 * Description: XO Security is a plugin to enhance login related security.
13 * Version: 3.7.1
14 * Requires at least: 4.9
15 * Requires PHP: 5.6
16 * Author: Xakuro
17 * Author URI: https://xakuro.com/
18 * License: GPL v2 or later
19 * Text Domain: xo-security
20 * Domain Path: /languages
21 */
22
23 if ( ! defined( 'ABSPATH' ) ) {
24 exit;
25 }
26
27 define( 'XO_SECURITY_VERSION', '3.7.1' );
28 define( 'XO_SECURITY_URL', plugins_url( '', __FILE__ ) );
29
30 require_once __DIR__ . '/inc/class-xo-security.php';
31
32 $xo_security = new XO_Security();
33
34 register_activation_hook( __FILE__, 'XO_Security::activation' );
35 register_uninstall_hook( __FILE__, 'XO_Security::uninstall' );
36 register_deactivation_hook( __FILE__, 'XO_Security::deactivation' );
37