-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbash-it-out.php
executable file
·32 lines (27 loc) · 1009 Bytes
/
bash-it-out.php
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
26
27
28
29
30
31
<?php
/**
* Bash It Out
*
* @package Bash_It_Out
* @link https://github.com/ramonjd/bash-it-out
* @since 1.0.0
*
* @wordpress-plugin
* Plugin Name: Bash it out
* Plugin URI: https://github.com/ramonjd/bash-it-out
* Description: Forget about quality, form or style. Achieve your word count goals with this pressure timer.
* Version: 1.0.0
* Author: Ramon
* Author URI: https://github.com/ramonjd/
* Text Domain: bash-it-out
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*/
if ( ! defined( 'WPINC' ) ) {
exit;
}
require_once plugin_dir_path( __FILE__ ) . '/class-bash-it-out-plugin.php';
add_action( 'plugins_loaded', array( 'Bash_It_Out\Plugin', 'init' ) );
register_activation_hook( __FILE__, array( 'Bash_It_Out\Plugin', 'activate_plugin' ) );
register_deactivation_hook( __FILE__, array( 'Bash_It_Out\Plugin', 'deactivate_plugin' ) );
register_uninstall_hook( __FILE__, array( 'Bash_It_Out\Plugin', 'uninstall_plugin' ) );