-
Notifications
You must be signed in to change notification settings - Fork 3
/
cloudflare-stream.php
executable file
·39 lines (34 loc) · 1.29 KB
/
cloudflare-stream.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
<?php
/**
* Plugin Name: Cloudflare Stream
* Plugin URI: https://github.com/B-Interactive/cloudflare-stream-wordpress
* Description: Cloudflare Stream Video is an easy-to-use, affordable, on-demand video streaming platform. Stream seamlessly integrates video storage, encoding, and a customizable player with Cloudflare’s fast, secure, and reliable global network, so that you can spend less time managing video delivery and more time building and promoting your product.
* Author: Cloudflare, B-Interactive, davidpurdy
* Author URI: https://github.com/B-Interactive/cloudflare-stream-wordpress
* Version: 1.1.0.0
* License: GPL2+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: cloudflare-stream
*
* @package cloudflare-stream
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Cloudflare Stream Settings Page
*/
require_once plugin_dir_path( __FILE__ ) . 'src/inc/class-cloudflare-stream-settings.php';
/**
* Cloudflare Stream API
*/
require_once plugin_dir_path( __FILE__ ) . 'src/inc/class-cloudflare-stream-api.php';
/**
* Cloudflare Stream Shortcode
*/
require_once plugin_dir_path( __FILE__ ) . 'src/inc/class-cloudflare-stream-shortcode.php';
/**
* Block Initializer.
*/
require_once plugin_dir_path( __FILE__ ) . 'src/init.php';