PluginProbe
WpStream – Live Streaming, Video on Demand, Pay Per View / 4.4.2
WpStream – Live Streaming, Video on Demand, Pay Per View v4.4.2
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 4.4.2, at wpstream.php

124 lines 3.9 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 - Live Streaming, Video on Demand, Pay Per View
4 * Plugin URI: http://wpstream.net
5 * Description: WpStream is a platform that allows you to live stream, create Video-on-Demand, and offer Pay-Per-View videos. We provide an affordable and user-friendly way for businesses, non-profits, and public institutions to broadcast their content and monetize their work.
6 * Version: 4.4.2
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', '4.4.2');
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 define('WPSTREAM_API', 'https://baker.wpstream.net');
25
26
27
28
29
30
31
32 /**
33 * The code that runs during plugin activation.
34 * This action is documented in includes/class-wpstream-activator.php
35 */
36 function activate_wpstream() {
37 require_once plugin_dir_path( __FILE__ ) . 'includes/class-wpstream-activator.php';
38 Wpstream_Activator::activate();
39 }
40
41 /**
42 * The code that runs during plugin deactivation.
43 * This action is documented in includes/class-wpstream-deactivator.php
44 */
45 function deactivate_wpstream() {
46 require_once plugin_dir_path( __FILE__ ) . 'includes/class-wpstream-deactivator.php';
47 Wpstream_Deactivator::deactivate();
48 }
49
50 register_activation_hook( __FILE__, 'activate_wpstream' );
51 register_deactivation_hook( __FILE__, 'deactivate_wpstream' );
52
53 /**
54 * The core plugin class that is used to define internationalization,
55 * admin-specific hooks, and public-facing site hooks.
56 */
57 require plugin_dir_path( __FILE__ ) . 'includes/class-wpstream.php';
58 require plugin_dir_path( __FILE__ ) . 'wpstream-elementor.php';
59
60
61
62 /**
63 * Begins execution of the plugin.
64 *
65 * Since everything within the plugin is registered via hooks,
66 * then kicking off the plugin from this point in the file does
67 * not affect the page life cycle.
68 *
69 * @since 3.0.1
70 */
71
72 global $wpstream_plugin;
73 $wpstream_plugin = new Wpstream();
74 $wpstream_plugin->run();
75
76 add_action( 'upgrader_process_complete', 'wpstream_my_upgrate_function',10, 2);
77
78 function wpstream_my_upgrate_function( $upgrader_object, $options ) {
79
80
81 $current_plugin_path_name = plugin_basename( __FILE__ );
82
83 if ($options['action'] == 'update' && $options['type'] == 'plugin' ) {
84 if(is_array($options)):
85 foreach($options['plugins'] as $each_plugin) {
86 if ($each_plugin==$current_plugin_path_name) {
87 delete_transient('wpstream_token_api');
88 update_option('wp_estate_token_expire',0);
89 update_option('wp_estate_curent_token',' ');
90
91 }
92 }
93 endif;
94 }
95
96
97 }
98
99
100
101 add_action('wp_head', 'wpstream_add_custom_meta_to_header');
102
103 function wpstream_add_custom_meta_to_header(){
104 global $post;
105
106
107 if ( is_singular('product') || is_singular('wpstream_product') || is_singular('wpstream_product_vod') ){
108 $image_id = get_post_thumbnail_id();
109 $share_img = wp_get_attachment_image_src( $image_id, 'full');
110 $the_post = get_post($post->ID); ?>
111
112 <meta property='og:title' content="<?php print esc_html(get_the_title($post->ID)); ?>"/>
113 <?php if(isset($share_img[0])){ ?>
114 <meta property="og:image" content="<?php print esc_url($share_img[0]); ?>"/>
115 <meta property="og:image:secure_url" content="<?php print esc_url($share_img[0]); ?>" />
116 <?php }?>
117
118 <meta property="og:description" content=" <?php print wp_strip_all_tags( $the_post->post_content);?>" />
119 <?php }
120
121
122 }
123
124