-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass-podcast.php
51 lines (43 loc) · 953 Bytes
/
class-podcast.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php namespace WPDC_Podcast;
/**
* Podcast Plugin
*
* @package WPDC_Podcast
* @since 1.1.2
* @author WPDevelopersClub and hellofromTonya
* @link https://wpdevelopersclub.com/
* @license GNU General Public License 2.0+
* @copyright 2015 WP Developers Club
*/
// Oh no you don't. Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit( 'Cheatin’ uh?' );
}
use WPDevsClub_Core\Addons\Addon;
final class Podcast extends Addon {
/**
* The plugin's version
*
* @var string
*/
const VERSION = '1.1.2';
/**
* The plugin's minimum WordPress requirement
*
* @var string
*/
const MIN_WP_VERSION = '3.5';
/*************************
* Instantiate & Init
************************/
/**
* Addons can overload this method for additional functionality
*
* @since 1.0.0
*
* @return null
*/
protected function init_addon() {
do_action( 'wpdevsclub_podcast_loaded' );
}
}