-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcloudflare-stream.php
More file actions
executable file
·57 lines (49 loc) · 1.86 KB
/
Copy pathcloudflare-stream.php
File metadata and controls
executable file
·57 lines (49 loc) · 1.86 KB
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
52
53
54
55
56
57
<?php
/**
* Plugin Name: Cloudflare Stream
* 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
* Plugin URI: https://github.com/B-Interactive/cloudflare-stream-wordpress
* Update URI: https://github.com/B-Interactive/cloudflare-stream-wordpress
* Version: 1.1.8
* Requires at least: 6.9
* Requires PHP: 7.4
* 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;
}
/**
* Encrypted option storage for API token and signing key PEM
*/
require_once plugin_dir_path( __FILE__ ) . 'src/inc/class-cloudflare-stream-secret-store.php';
/**
* 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 signing health / degradation diagnostics
*/
require_once plugin_dir_path( __FILE__ ) . 'src/inc/class-cloudflare-stream-signing-health.php';
/**
* Cloudflare Stream Shortcode
*/
require_once plugin_dir_path( __FILE__ ) . 'src/inc/class-cloudflare-stream-shortcode.php';
/**
* Cloudflare Stream GitHub updater
*/
require_once plugin_dir_path( __FILE__ ) . 'src/inc/class-cloudflare-stream-updater.php';
/**
* Block Initializer.
*/
require_once plugin_dir_path( __FILE__ ) . 'src/init.php';