PluginProbe
WpStream – Live Streaming, Video on Demand, Pay Per View / 3.5.3
WpStream – Live Streaming, Video on Demand, Pay Per View v3.5.3
4.14.0 4.13.2 4.13.1 4.13 4.12.5 4.12.4 4.12.3 4.12.2 4.12.1 4.12 4.4.4 4.4.5 4.4.6 4.4.7 4.4.8 4.4.9 4.5 4.5.1 4.5.11 4.5.11.1 4.5.11.2 4.5.11.4 4.5.11.5 4.5.11.6 4.5.12 All 180 releases
wpstream / wpstream.php

wpstream.php in WpStream – Live Streaming, Video on Demand, Pay Per View 3.5.3, at wpstream.php

76 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: WpStream
4 * Plugin URI: http://wpstream.net
5 * Description: WpStream is a WordPress plugin to help you stream & monetize media content.
6 * Version: 3.5.3
7 * Author: wpstream
8 * Author URI: http://wpstream.net
9 * Text Domain: wpstream
10 * Domain Path: /languages
11 */
12
13 // If this file is called directly, abort.
14 if ( ! defined( 'WPINC' ) ) {
15 die;
16 }
17 define('WPSTREAM_PLUGIN_VERSION', '3.5.3.0');
18 define('WPSTREAM_CLUBLINK', 'wpstream.net');
19 define('WPSTREAM_CLUBLINKSSL', 'https');
20 define('WPSTREAM_PLUGIN_URL', plugins_url() );
21 define('WPSTREAM_PLUGIN_DIR_URL', plugin_dir_url(__FILE__) );
22 define('WPSTREAM_PLUGIN_PATH', plugin_dir_path(__FILE__) );
23 define('WPSTREAM_PLUGIN_BASE', plugin_basename(__FILE__) );
24 /**
25 * Currently plugin version.
26 * Start at version 3.0.1 and use SemVer - https://semver.org
27 * Rename this for your plugin and update it as you release new versions.
28 */
29 define( 'WPSTREAM_VERSION', '3.5.3.0' );
30
31 /**
32 * The code that runs during plugin activation.
33 * This action is documented in includes/class-wpstream-activator.php
34 */
35 function activate_wpstream() {
36 require_once plugin_dir_path( __FILE__ ) . 'includes/class-wpstream-activator.php';
37 Wpstream_Activator::activate();
38 }
39
40 /**
41 * The code that runs during plugin deactivation.
42 * This action is documented in includes/class-wpstream-deactivator.php
43 */
44 function deactivate_wpstream() {
45 require_once plugin_dir_path( __FILE__ ) . 'includes/class-wpstream-deactivator.php';
46 Wpstream_Deactivator::deactivate();
47 }
48
49 register_activation_hook( __FILE__, 'activate_wpstream' );
50 register_deactivation_hook( __FILE__, 'deactivate_wpstream' );
51
52 /**
53 * The core plugin class that is used to define internationalization,
54 * admin-specific hooks, and public-facing site hooks.
55 */
56 require plugin_dir_path( __FILE__ ) . 'includes/class-wpstream.php';
57
58 /**
59 * Begins execution of the plugin.
60 *
61 * Since everything within the plugin is registered via hooks,
62 * then kicking off the plugin from this point in the file does
63 * not affect the page life cycle.
64 *
65 * @since 3.0.1
66 */
67 //function run_wpstream() {
68 //
69 // $plugin = new Wpstream();
70 // $plugin->run();
71 //
72 //}
73 //run_wpstream();
74 global $wpstream_plugin;
75 $wpstream_plugin = new Wpstream();
76 $wpstream_plugin->run();