Changeset 3280871
- Timestamp:
- 04/24/2025 11:40:42 AM (10 months ago)
- Location:
- wpstream
- Files:
-
- 6 edited
- 1 copied
-
tags/4.6.6.9 (copied) (copied from wpstream/trunk)
-
tags/4.6.6.9/admin/class-wpstream-admin.php (modified) (2 diffs)
-
tags/4.6.6.9/readme.txt (modified) (2 diffs)
-
tags/4.6.6.9/wpstream.php (modified) (5 diffs)
-
trunk/admin/class-wpstream-admin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wpstream.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpstream/tags/4.6.6.9/admin/class-wpstream-admin.php
r3278949 r3280871 71 71 $this->main = $plugin_main; 72 72 73 add_action('init', array($this, 'load_global_event_options')); 74 } 75 76 public function load_global_event_options() { 73 77 $this->global_event_options = array( 74 78 'record' => array( … … 1928 1932 public function wpstream_present_file_management(){ 1929 1933 $video_list_raw = $this->main->wpstream_live_connection->wpstream_get_videos_from_api(); 1930 // echo '<pre>';1931 // var_dump($video_list_raw);1932 // echo '</pre>';1933 1934 1934 1935 $video_list_raw_array = []; -
wpstream/tags/4.6.6.9/readme.txt
r3279770 r3280871 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.1 7 Stable tag: 4.6.6. 87 Stable tag: 4.6.6.9 8 8 License: GPL 9 9 License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html … … 138 138 == Changelog == 139 139 140 = 4.6.6.9 = 141 * Fix - WpStream shortcodes not working 142 140 143 = 4.6.6.8 = 141 144 * Fix - WpStream Widgets not appearing when using Elementor -
wpstream/tags/4.6.6.9/wpstream.php
r3279770 r3280871 4 4 * Plugin URI: http://wpstream.net 5 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.6.6. 86 * Version: 4.6.6.9 7 7 * Author: wpstream 8 8 * Author URI: http://wpstream.net … … 15 15 die; 16 16 } 17 define('WPSTREAM_PLUGIN_VERSION', '4.6.6. 8');17 define('WPSTREAM_PLUGIN_VERSION', '4.6.6.9'); 18 18 define('WPSTREAM_CLUBLINK', 'wpstream.net'); 19 19 define('WPSTREAM_CLUBLINKSSL', 'https'); … … 47 47 register_deactivation_hook( __FILE__, 'deactivate_wpstream' ); 48 48 49 /** 50 * The core plugin class that is used to define internationalization, 51 * admin-specific hooks, and public-facing site hooks. 52 */ 53 require plugin_dir_path( __FILE__ ) . 'includes/class-wpstream.php'; 49 54 require plugin_dir_path( __FILE__ ) . 'wpstream-elementor.php'; 50 55 require plugin_dir_path( __FILE__ ) . 'streamify/streamify.php'; 56 57 require plugin_dir_path( __FILE__ ) . 'integrations/integrations.php'; 51 58 52 59 /** … … 60 67 */ 61 68 62 function wpstream_init_plugin() { 63 /** 64 * The core plugin class that is used to define internationalization, 65 * admin-specific hooks, and public-facing site hooks. 66 */ 67 require plugin_dir_path( __FILE__ ) . 'includes/class-wpstream.php'; 68 69 global $wpstream_plugin; 70 $wpstream_plugin = new Wpstream(); 71 $wpstream_plugin->run(); 72 } 73 add_action( 'init', 'wpstream_init_plugin' ); 69 global $wpstream_plugin; 70 $wpstream_plugin = new Wpstream(); 71 $wpstream_plugin->run(); 74 72 75 73 add_action( 'upgrader_process_complete', 'wpstream_my_upgrate_function',10, 2); … … 132 130 add_filter('pt-ocdi/plugin_intro_text', 'ocdi_plugin_intro_text'); 133 131 134 require plugin_dir_path( __FILE__ ) . 'integrations/integrations.php';135 132 136 133 add_action( 'plugins_loaded', 'wpstream_check_integrations' ); -
wpstream/trunk/admin/class-wpstream-admin.php
r3278949 r3280871 71 71 $this->main = $plugin_main; 72 72 73 add_action('init', array($this, 'load_global_event_options')); 74 } 75 76 public function load_global_event_options() { 73 77 $this->global_event_options = array( 74 78 'record' => array( … … 1928 1932 public function wpstream_present_file_management(){ 1929 1933 $video_list_raw = $this->main->wpstream_live_connection->wpstream_get_videos_from_api(); 1930 // echo '<pre>';1931 // var_dump($video_list_raw);1932 // echo '</pre>';1933 1934 1934 1935 $video_list_raw_array = []; -
wpstream/trunk/readme.txt
r3279770 r3280871 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.1 7 Stable tag: 4.6.6. 87 Stable tag: 4.6.6.9 8 8 License: GPL 9 9 License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html … … 138 138 == Changelog == 139 139 140 = 4.6.6.9 = 141 * Fix - WpStream shortcodes not working 142 140 143 = 4.6.6.8 = 141 144 * Fix - WpStream Widgets not appearing when using Elementor -
wpstream/trunk/wpstream.php
r3279770 r3280871 4 4 * Plugin URI: http://wpstream.net 5 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.6.6. 86 * Version: 4.6.6.9 7 7 * Author: wpstream 8 8 * Author URI: http://wpstream.net … … 15 15 die; 16 16 } 17 define('WPSTREAM_PLUGIN_VERSION', '4.6.6. 8');17 define('WPSTREAM_PLUGIN_VERSION', '4.6.6.9'); 18 18 define('WPSTREAM_CLUBLINK', 'wpstream.net'); 19 19 define('WPSTREAM_CLUBLINKSSL', 'https'); … … 47 47 register_deactivation_hook( __FILE__, 'deactivate_wpstream' ); 48 48 49 /** 50 * The core plugin class that is used to define internationalization, 51 * admin-specific hooks, and public-facing site hooks. 52 */ 53 require plugin_dir_path( __FILE__ ) . 'includes/class-wpstream.php'; 49 54 require plugin_dir_path( __FILE__ ) . 'wpstream-elementor.php'; 50 55 require plugin_dir_path( __FILE__ ) . 'streamify/streamify.php'; 56 57 require plugin_dir_path( __FILE__ ) . 'integrations/integrations.php'; 51 58 52 59 /** … … 60 67 */ 61 68 62 function wpstream_init_plugin() { 63 /** 64 * The core plugin class that is used to define internationalization, 65 * admin-specific hooks, and public-facing site hooks. 66 */ 67 require plugin_dir_path( __FILE__ ) . 'includes/class-wpstream.php'; 68 69 global $wpstream_plugin; 70 $wpstream_plugin = new Wpstream(); 71 $wpstream_plugin->run(); 72 } 73 add_action( 'init', 'wpstream_init_plugin' ); 69 global $wpstream_plugin; 70 $wpstream_plugin = new Wpstream(); 71 $wpstream_plugin->run(); 74 72 75 73 add_action( 'upgrader_process_complete', 'wpstream_my_upgrate_function',10, 2); … … 132 130 add_filter('pt-ocdi/plugin_intro_text', 'ocdi_plugin_intro_text'); 133 131 134 require plugin_dir_path( __FILE__ ) . 'integrations/integrations.php';135 132 136 133 add_action( 'plugins_loaded', 'wpstream_check_integrations' );
Note: See TracChangeset
for help on using the changeset viewer.