-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathinit.php
More file actions
29 lines (26 loc) · 841 Bytes
/
init.php
File metadata and controls
29 lines (26 loc) · 841 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
26
27
28
29
<?php
/**
* Able Player WordPress Plugin
*
* @package AblePlayer
* @author Terrill Thompson
* @license MIT
*
* @wordpress-plugin
* Plugin Name: Able Player
* Plugin URI: https://github.com/ableplayer/ableplayer-wordpress
* Description: Able Player is a fully accessible cross-browser HTML5 media player for audio and video.
* Author: Terrill Thompson
* Author URI: http://terrillthompson.com
* Text Domain: ableplayer
* License: MIT
* License URI: https://github.com/ableplayer/ableplayer-wordpress/blob/master/LICENSE
* Domain Path: lang
* Version: 1.2.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
include( dirname( __FILE__ ) . '/src/ableplayer.php' );
register_activation_hook( __FILE__, 'ableplayer_activation' );
register_deactivation_hook( __FILE__, 'ableplayer_plugin_deactivated' );