Plugin Directory

Changeset 3280871


Ignore:
Timestamp:
04/24/2025 11:40:42 AM (10 months ago)
Author:
wpstream
Message:

Update to version 4.6.6.9 from GitHub

Location:
wpstream
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wpstream/tags/4.6.6.9/admin/class-wpstream-admin.php

    r3278949 r3280871  
    7171        $this->main = $plugin_main;
    7272
     73        add_action('init', array($this, 'load_global_event_options'));
     74    }
     75
     76    public function load_global_event_options() {
    7377        $this->global_event_options = array(
    7478            'record'        => array(
     
    19281932        public function wpstream_present_file_management(){
    19291933                $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>';
    19331934
    19341935                $video_list_raw_array = [];
  • wpstream/tags/4.6.6.9/readme.txt

    r3279770 r3280871  
    55Tested up to: 6.8
    66Requires PHP: 7.1
    7 Stable tag: 4.6.6.8
     7Stable tag: 4.6.6.9
    88License: GPL
    99License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     
    138138== Changelog ==
    139139
     140= 4.6.6.9 =
     141* Fix - WpStream shortcodes not working
     142
    140143= 4.6.6.8 =
    141144* Fix - WpStream Widgets not appearing when using Elementor
  • wpstream/tags/4.6.6.9/wpstream.php

    r3279770 r3280871  
    44 * Plugin URI:        http://wpstream.net
    55 * 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.8
     6 * Version:           4.6.6.9
    77 * Author:            wpstream
    88 * Author URI:        http://wpstream.net
     
    1515    die;
    1616}
    17 define('WPSTREAM_PLUGIN_VERSION', '4.6.6.8');
     17define('WPSTREAM_PLUGIN_VERSION', '4.6.6.9');
    1818define('WPSTREAM_CLUBLINK', 'wpstream.net');
    1919define('WPSTREAM_CLUBLINKSSL', 'https');
     
    4747register_deactivation_hook( __FILE__, 'deactivate_wpstream' );
    4848
     49/**
     50 * The core plugin class that is used to define internationalization,
     51 * admin-specific hooks, and public-facing site hooks.
     52 */
     53require plugin_dir_path( __FILE__ ) . 'includes/class-wpstream.php';
    4954require plugin_dir_path( __FILE__ ) . 'wpstream-elementor.php';
    5055require plugin_dir_path( __FILE__ ) . 'streamify/streamify.php';
     56
     57require plugin_dir_path( __FILE__ ) . 'integrations/integrations.php';
    5158
    5259/**
     
    6067 */
    6168
    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' );
     69global $wpstream_plugin;
     70$wpstream_plugin = new Wpstream();
     71$wpstream_plugin->run();
    7472
    7573add_action( 'upgrader_process_complete', 'wpstream_my_upgrate_function',10, 2);
     
    132130add_filter('pt-ocdi/plugin_intro_text', 'ocdi_plugin_intro_text');
    133131
    134 require plugin_dir_path( __FILE__ ) . 'integrations/integrations.php';
    135132
    136133add_action( 'plugins_loaded', 'wpstream_check_integrations' );
  • wpstream/trunk/admin/class-wpstream-admin.php

    r3278949 r3280871  
    7171        $this->main = $plugin_main;
    7272
     73        add_action('init', array($this, 'load_global_event_options'));
     74    }
     75
     76    public function load_global_event_options() {
    7377        $this->global_event_options = array(
    7478            'record'        => array(
     
    19281932        public function wpstream_present_file_management(){
    19291933                $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>';
    19331934
    19341935                $video_list_raw_array = [];
  • wpstream/trunk/readme.txt

    r3279770 r3280871  
    55Tested up to: 6.8
    66Requires PHP: 7.1
    7 Stable tag: 4.6.6.8
     7Stable tag: 4.6.6.9
    88License: GPL
    99License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     
    138138== Changelog ==
    139139
     140= 4.6.6.9 =
     141* Fix - WpStream shortcodes not working
     142
    140143= 4.6.6.8 =
    141144* Fix - WpStream Widgets not appearing when using Elementor
  • wpstream/trunk/wpstream.php

    r3279770 r3280871  
    44 * Plugin URI:        http://wpstream.net
    55 * 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.8
     6 * Version:           4.6.6.9
    77 * Author:            wpstream
    88 * Author URI:        http://wpstream.net
     
    1515    die;
    1616}
    17 define('WPSTREAM_PLUGIN_VERSION', '4.6.6.8');
     17define('WPSTREAM_PLUGIN_VERSION', '4.6.6.9');
    1818define('WPSTREAM_CLUBLINK', 'wpstream.net');
    1919define('WPSTREAM_CLUBLINKSSL', 'https');
     
    4747register_deactivation_hook( __FILE__, 'deactivate_wpstream' );
    4848
     49/**
     50 * The core plugin class that is used to define internationalization,
     51 * admin-specific hooks, and public-facing site hooks.
     52 */
     53require plugin_dir_path( __FILE__ ) . 'includes/class-wpstream.php';
    4954require plugin_dir_path( __FILE__ ) . 'wpstream-elementor.php';
    5055require plugin_dir_path( __FILE__ ) . 'streamify/streamify.php';
     56
     57require plugin_dir_path( __FILE__ ) . 'integrations/integrations.php';
    5158
    5259/**
     
    6067 */
    6168
    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' );
     69global $wpstream_plugin;
     70$wpstream_plugin = new Wpstream();
     71$wpstream_plugin->run();
    7472
    7573add_action( 'upgrader_process_complete', 'wpstream_my_upgrate_function',10, 2);
     
    132130add_filter('pt-ocdi/plugin_intro_text', 'ocdi_plugin_intro_text');
    133131
    134 require plugin_dir_path( __FILE__ ) . 'integrations/integrations.php';
    135132
    136133add_action( 'plugins_loaded', 'wpstream_check_integrations' );
Note: See TracChangeset for help on using the changeset viewer.