forked from rtCamp/transcoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rt-transcoder.php
50 lines (43 loc) · 1.43 KB
/
rt-transcoder.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
<?php
/**
* Plugin Name: Transcoder
* Plugin URI: https://rtmedia.io/transcoder/?utm_source=dashboard&utm_medium=plugin&utm_campaign=transcoder
* Description: Audio & video transcoding services for ANY WordPress website. Allows you to convert audio/video files of any format to a web-friendly format (mp3/mp4).
* Version: 1.1.1
* Text Domain: transcoder
* Author: rtCamp
* Author URI: https://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=transcoder
* Domain Path: /languages/
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
*
* @package Transcoder
*/
if ( ! defined( 'RT_TRANSCODER_PATH' ) ) {
/**
* The server file system path to the plugin directory
*/
define( 'RT_TRANSCODER_PATH', plugin_dir_path( __FILE__ ) );
}
if ( ! defined( 'RT_TRANSCODER_URL' ) ) {
/**
* The url to the plugin directory
*/
define( 'RT_TRANSCODER_URL', plugin_dir_url( __FILE__ ) );
}
if ( ! defined( 'RT_TRANSCODER_BASE_NAME' ) ) {
/**
* The base name of the plugin directory
*/
define( 'RT_TRANSCODER_BASE_NAME', plugin_basename( __FILE__ ) );
}
if ( ! defined( 'RT_TRANSCODER_VERSION' ) ) {
/**
* The version of the plugin
*/
define( 'RT_TRANSCODER_VERSION', '1.1.1' );
}
require_once RT_TRANSCODER_PATH . 'admin/rt-transcoder-functions.php';
require_once RT_TRANSCODER_PATH . 'admin/rt-transcoder-admin.php';
global $rt_transcoder_admin;
$rt_transcoder_admin = new RT_Transcoder_Admin();