-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestflow.php
More file actions
25 lines (21 loc) · 798 Bytes
/
testflow.php
File metadata and controls
25 lines (21 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**
* Plugin Name: TestFlow
* Plugin URI: https://make.wordpress.org/test/
* Description: Session facilitator for WordPress Test Team members.
* Version: 0.5.2
* Requires at least: 6.0
* Requires PHP: 7.4
* Author: WordPress Test Team
* License: GPL-2.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: testflow
*
* @package TestFlow
*/
defined( 'ABSPATH' ) || exit;
define( 'TESTFLOW_DIR', plugin_dir_path( __FILE__ ) );
define( 'TESTFLOW_URL', plugin_dir_url( __FILE__ ) );
require_once TESTFLOW_DIR . 'includes/class-testflow-messages.php';
require_once TESTFLOW_DIR . 'includes/class-testflow-admin.php';
add_action( 'plugins_loaded', array( 'TestFlow_Admin', 'init' ) );