Changeset 3142154
- Timestamp:
- 08/27/2024 09:21:41 AM (19 months ago)
- Location:
- offload-videos-bunny-netaws-s3/trunk
- Files:
-
- 10 edited
-
README.txt (modified) (1 diff)
-
admin/class-offload-video-admin.php (modified) (6 diffs)
-
includes/class-offload-video-activator.php (modified) (3 diffs)
-
includes/class-offload-video-deactivator.php (modified) (3 diffs)
-
includes/class-offload-video.php (modified) (15 diffs)
-
includes/class-video-uploader-for-tutorlms-i18n.php (modified) (3 diffs)
-
includes/class-video-uploader-for-tutorlms-loader.php (modified) (8 diffs)
-
offload-video.php (modified) (3 diffs)
-
public/class-offload-video-public.php (modified) (6 diffs)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
offload-videos-bunny-netaws-s3/trunk/README.txt
r3140306 r3142154 5 5 Requires at least: 4.7 6 6 Tested up to: 6.6.1 7 Stable tag: 1.0. 18 Version: 1.0. 17 Stable tag: 1.0.2 8 Version: 1.0.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
offload-videos-bunny-netaws-s3/trunk/admin/class-offload-video-admin.php
r3140306 r3142154 5 5 * 6 6 * @link https://wegarh.com 7 * @since 1.0. 17 * @since 1.0.2 8 8 * 9 9 * @package offload-videos … … 26 26 * The ID of this plugin. 27 27 * 28 * @since 1.0. 128 * @since 1.0.2 29 29 * @access private 30 30 * @var string $plugin_name The ID of this plugin. … … 35 35 * The version of this plugin. 36 36 * 37 * @since 1.0. 137 * @since 1.0.2 38 38 * @access private 39 39 * @var string $version The current version of this plugin. … … 44 44 * Initialize the class and set its properties. 45 45 * 46 * @since 1.0. 146 * @since 1.0.2 47 47 * @param string $plugin_name The name of this plugin. 48 48 * @param string $version The version of this plugin. … … 63 63 * Register the stylesheets for the admin area. 64 64 * 65 * @since 1.0. 165 * @since 1.0.2 66 66 */ 67 67 public function offload_video_enqueue_styles() { … … 86 86 * Register the JavaScript for the admin area. 87 87 * 88 * @since 1.0. 188 * @since 1.0.2 89 89 */ 90 90 public function offload_video_enqueue_scripts() { -
offload-videos-bunny-netaws-s3/trunk/includes/class-offload-video-activator.php
r3140306 r3142154 5 5 * 6 6 * @link https://webgarh.com/ 7 * @since 1.0. 17 * @since 1.0.2 8 8 * 9 9 * @package oflload-videos … … 16 16 * This class defines all code necessary to run during the plugin's activation. 17 17 * 18 * @since 1.0. 118 * @since 1.0.2 19 19 * @package oflload-videos 20 20 * @subpackage oflload-videos/includes … … 28 28 * Long Description. 29 29 * 30 * @since 1.0. 130 * @since 1.0.2 31 31 */ 32 32 public static function activate() { -
offload-videos-bunny-netaws-s3/trunk/includes/class-offload-video-deactivator.php
r3140306 r3142154 5 5 * 6 6 * @link https://webgarh.com/ 7 * @since 1.0. 07 * @since 1.0.2 8 8 * 9 9 * @package oflload-videos … … 16 16 * This class defines all code necessary to run during the plugin's deactivation. 17 17 * 18 * @since 1.0. 018 * @since 1.0.2 19 19 * @package oflload-videos 20 20 * @subpackage oflload-videos/includes … … 28 28 * Long Description. 29 29 * 30 * @since 1.0. 030 * @since 1.0.2 31 31 */ 32 32 public static function deactivate() { -
offload-videos-bunny-netaws-s3/trunk/includes/class-offload-video.php
r3140306 r3142154 8 8 * 9 9 * @link https://webgarh.com/ 10 * @since 1.0. 110 * @since 1.0.2 11 11 * 12 12 * @package offload-videos … … 23 23 * version of the plugin. 24 24 * 25 * @since 1.0. 125 * @since 1.0.2 26 26 * @package offload-videos 27 27 * @subpackage offload-videos/includes … … 34 34 * the plugin. 35 35 * 36 * @since 1.0. 136 * @since 1.0.2 37 37 * @access protected 38 38 * @var Video_Uploader_For_Tutorlms_Loader $loader Maintains and registers all hooks for the plugin. … … 43 43 * The unique identifier of this plugin. 44 44 * 45 * @since 1.0. 145 * @since 1.0.2 46 46 * @access protected 47 47 * @var string $plugin_name The string used to uniquely identify this plugin. … … 52 52 * The current version of the plugin. 53 53 * 54 * @since 1.0. 154 * @since 1.0.2 55 55 * @access protected 56 56 * @var string $version The current version of the plugin. … … 65 65 * the public-facing side of the site. 66 66 * 67 * @since 1.0. 167 * @since 1.0.2 68 68 */ 69 69 public function __construct() { … … 71 71 $this->version = OFFLOAD_VIDEO_VERSION; 72 72 } else { 73 $this->version = '1.0. 1';73 $this->version = '1.0.2'; 74 74 } 75 75 $this->plugin_name = 'offload-videos'; … … 95 95 * with WordPress. 96 96 * 97 * @since 1.0. 197 * @since 1.0.2 98 98 * @access private 99 99 */ … … 133 133 * with WordPress. 134 134 * 135 * @since 1.0. 1135 * @since 1.0.2 136 136 * @access private 137 137 */ … … 148 148 * of the plugin. 149 149 * 150 * @since 1.0. 1150 * @since 1.0.2 151 151 * @access private 152 152 */ … … 164 164 * of the plugin. 165 165 * 166 * @since 1.0. 1166 * @since 1.0.2 167 167 * @access private 168 168 */ … … 192 192 * Run the loader to execute all of the hooks with WordPress. 193 193 * 194 * @since 1.0. 1194 * @since 1.0.2 195 195 */ 196 196 public function run() { … … 202 202 * WordPress and to define internationalization functionality. 203 203 * 204 * @since 1.0. 1204 * @since 1.0.2 205 205 * @return string The name of the plugin. 206 206 */ … … 212 212 * The reference to the class that orchestrates the hooks with the plugin. 213 213 * 214 * @since 1.0. 1214 * @since 1.0.2 215 215 * @return Video_Uploader_For_Tutorlms_Loader Orchestrates the hooks of the plugin. 216 216 */ … … 222 222 * Retrieve the version number of the plugin. 223 223 * 224 * @since 1.0. 1224 * @since 1.0.2 225 225 * @return string The version number of the plugin. 226 226 */ -
offload-videos-bunny-netaws-s3/trunk/includes/class-video-uploader-for-tutorlms-i18n.php
r3140306 r3142154 8 8 * 9 9 * @link https://webgarh.com/ 10 * @since 1.0. 110 * @since 1.0.2 11 11 * 12 12 * @package offload-videos … … 20 20 * so that it is ready for translation. 21 21 * 22 * @since 1.0. 122 * @since 1.0.2 23 23 * @package offload-videos 24 24 * @subpackage offload-videos/includes … … 31 31 * Load the plugin text domain for translation. 32 32 * 33 * @since 1.0. 133 * @since 1.0.2 34 34 */ 35 35 public function load_plugin_textdomain() { -
offload-videos-bunny-netaws-s3/trunk/includes/class-video-uploader-for-tutorlms-loader.php
r3140306 r3142154 5 5 * 6 6 * @link https://webgarh.com/ 7 * @since 1.0. 17 * @since 1.0.2 8 8 * 9 9 * @package offload-videos … … 27 27 * The array of actions registered with WordPress. 28 28 * 29 * @since 1.0. 129 * @since 1.0.2 30 30 * @access protected 31 31 * @var array $actions The actions registered with WordPress to fire when the plugin loads. … … 36 36 * The array of filters registered with WordPress. 37 37 * 38 * @since 1.0. 138 * @since 1.0.2 39 39 * @access protected 40 40 * @var array $filters The filters registered with WordPress to fire when the plugin loads. … … 45 45 * Initialize the collections used to maintain the actions and filters. 46 46 * 47 * @since 1.0. 147 * @since 1.0.2 48 48 */ 49 49 public function __construct() { … … 57 57 * Add a new action to the collection to be registered with WordPress. 58 58 * 59 * @since 1.0. 159 * @since 1.0.2 60 60 * @param string $hook The name of the WordPress action that is being registered. 61 61 * @param object $component A reference to the instance of the object on which the action is defined. … … 71 71 * Add a new filter to the collection to be registered with WordPress. 72 72 * 73 * @since 1.0. 173 * @since 1.0.2 74 74 * @param string $hook The name of the WordPress filter that is being registered. 75 75 * @param object $component A reference to the instance of the object on which the filter is defined. … … 86 86 * collection. 87 87 * 88 * @since 1.0. 188 * @since 1.0.2 89 89 * @access private 90 90 * @param array $hooks The collection of hooks that is being registered (that is, actions or filters). … … 113 113 * Register the filters and actions with WordPress. 114 114 * 115 * @since 1.0. 1115 * @since 1.0.2 116 116 */ 117 117 public function run() { -
offload-videos-bunny-netaws-s3/trunk/offload-video.php
r3140306 r3142154 9 9 * 10 10 * @link https://webgarh.com/ 11 * @since 1.0. 111 * @since 1.0.2 12 12 * @package Video_Uploader_For_Tutorlms 13 13 * … … 15 15 * Plugin Name: Offload Videos-Bunny.net,AWS S3 16 16 * Description: Upload videos to Bunny.net and AWS S3 storage via using bunny streaming API's and AWS SDK services 17 * Version: 1.0. 117 * Version: 1.0.2 18 18 * Author: Webgarh Solutions 19 19 * Author URI: https://webgarh.com/ … … 30 30 31 31 $PluginTextDomain="offload-videos-bunny-netaws-s3"; 32 define( "OFFLOAD_VIDEO_VERSION", "1.0. 1");32 define( "OFFLOAD_VIDEO_VERSION", "1.0.2"); 33 33 define("BUNNY_LIBRARY_URL","https://video.bunnycdn.com/library"); 34 34 define("STREAMING_PLUGIN_PATH",plugin_dir_path( __FILE__ )); -
offload-videos-bunny-netaws-s3/trunk/public/class-offload-video-public.php
r3140306 r3142154 12 12 * 13 13 * @link https://webgarh.com 14 * @since 1.0. 114 * @since 1.0.2 15 15 * 16 16 * @package offload-videos … … 33 33 * The ID of this plugin. 34 34 * 35 * @since 1.0. 035 * @since 1.0.2 36 36 * @access private 37 37 * @var string $plugin_name The ID of this plugin. … … 42 42 * The version of this plugin. 43 43 * 44 * @since 1.0. 044 * @since 1.0.2 45 45 * @access private 46 46 * @var string $version The current version of this plugin. … … 51 51 * Initialize the class and set its properties. 52 52 * 53 * @since 1.0. 053 * @since 1.0.2 54 54 * @param string $plugin_name The name of the plugin. 55 55 * @param string $version The version of this plugin. … … 71 71 * Register the stylesheets for the public-facing side of the site. 72 72 * 73 * @since 1.0. 073 * @since 1.0.2 74 74 */ 75 75 public function offload_video_check_foot_js() … … 114 114 * Register the JavaScript for the public-facing side of the site. 115 115 * 116 * @since 1.0. 0116 * @since 1.0.2 117 117 */ 118 118 public function offload_video_enqueue_scripts() { -
offload-videos-bunny-netaws-s3/trunk/uninstall.php
r3140306 r3142154 21 21 * 22 22 * @link https://webgarh.com/ 23 * @since 1.0. 123 * @since 1.0.2 24 24 * 25 25 * @package offload-videos
Note: See TracChangeset
for help on using the changeset viewer.