-
Notifications
You must be signed in to change notification settings - Fork 2
/
api.video.php
23 lines (23 loc) · 1.11 KB
/
api.video.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/*
* Plugin Name: api.video
* Plugin URI: https://api.video/
* Description: <a target="_blank" href="https://api.video">api.video</a> provides video infrastructure for product builders. Use <a target="_blank" href="https://api.video">api.video</a> lightning-fast video APIs for integrating, scaling, and managing on-demand & low latency live streaming features in your WordPress site.
* Version: 1.0.9
* Author: api.video
* Author URI: https://api.video/
*
*
* License: MIT
* License URI: https://opensource.org/licenses/MIT
* Text Domain: the text domain of the plugin
* Domain Path: where to find the translation files (see How to Internationalize Your Plugin)
*/
defined( 'ABSPATH' ) || die( 'No direct script access allowed!' );
define ('APIVIDEO_ROOT_URL', plugin_dir_path(__FILE__));
require_once APIVIDEO_ROOT_URL . 'includes/av_functions.php';
require_once APIVIDEO_ROOT_URL . 'includes/av_pages.php';
require_once APIVIDEO_ROOT_URL . 'includes/av_page_add_new_video.php';
require_once APIVIDEO_ROOT_URL . 'includes/av_page_library.php';
require_once APIVIDEO_ROOT_URL . 'includes/av_page_settings.php';
?>