-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathinit.php
More file actions
28 lines (25 loc) · 871 Bytes
/
init.php
File metadata and controls
28 lines (25 loc) · 871 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
<?php
/**
* Able Player WordPress plugin, accessible HTML5 media player
*
* @package AblePlayer
* @author Joe Dolson
* @license MIT
*
* @wordpress-plugin
* Plugin Name: Able Player WordPress plugin, accessible HTML5 media 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: Joe Dolson
* Author URI: https://www.joedolson.com
* Text Domain: ableplayer
* License: MIT
* License URI: https://github.com/ableplayer/ableplayer-wordpress/blob/master/LICENSE
* Version: 2.3.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
require __DIR__ . '/src/ableplayer.php';
register_activation_hook( __FILE__, 'ableplayer_activation' );
register_deactivation_hook( __FILE__, 'ableplayer_plugin_deactivated' );