Plugin Directory

Changeset 2585009


Ignore:
Timestamp:
08/18/2021 05:35:53 PM (5 years ago)
Author:
codelizarplugs
Message:

update 2.6

Location:
ultimate-youtube-video-player/trunk
Files:
1 added
7 edited

Legend:

Unmodified
Added
Removed
  • ultimate-youtube-video-player/trunk/README.txt

    r2553498 r2585009  
    11=== Ultimate YouTube Video Player ===
    22Contributors: codelizarplugs
    3 Tags: video, youtube, subscribe, responsive, you tube, shortcode, youtube api, widget, YouTube, YouTube Video, Playlist Video, Video Player, Tutorial, YouTube Embed, playlist
     3Tags: video, youtube, you tube, subscribe, responsive, you tube, shortcode, youtube api, widget, YouTube, YouTube Video, Playlist Video, Video Player, Tutorial, YouTube Embed, playlist
    44Donate link: https://codelizar.com/
    55Requires at least: 4.0
    6 Tested up to: 5.7.2
     6Tested up to: 5.8
    77Requires PHP: 5.6
    8 Stable tag: 2.5
     8Stable tag: 2.6
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    101101== Changelog ==
    102102
     103= 2.6 =
     104*Release Date - 18 August 2021*
     105* Add delete button for delete rich video
     106* Minor bug fixed
     107
    103108= 2.5 =
    104109*Release Date - 24 June 2021*
     
    109114* Add Tutorials video in readme file.
    110115* Update screenshots
    111 
    112 = 2.3 =
    113 *Release Date - 26 Feburary 2021*
    114 
    115 * Update feature list
    116 * Minor bug fixed
    117 * Tested upto Wordpress 5.6.2
  • ultimate-youtube-video-player/trunk/admin/admin.php

    r2553498 r2585009  
    1919add_action( 'wp_ajax_savesetting', array( 'CDLZR_YT_Actions', 'save_setting' ) );
    2020add_action( 'wp_ajax_delytdata', array( 'CDLZR_YT_Actions', 'del_ytsetting' ) );
     21add_action( 'wp_ajax_richdelsingytvideo', array( 'CDLZR_YT_Actions', 'rich_del_single_video' ) );
    2122add_action( 'wp_ajax_saverichvids', array( 'CDLZR_YT_Actions', 'save_rich_single_video' ) );
    2223add_filter( 'plugin_action_links_' . plugin_basename(CDLZR_YTUBE_FILE), array( 'CDLZR_YT_Actions', 'cdlzr_yt_plugin_actions_links' ) );
  • ultimate-youtube-video-player/trunk/admin/class-cdlzr-yt-actions.php

    r2553498 r2585009  
    4242        public static function save_rich_single_video() {
    4343            include( CDLZR_YTUBE_PLUGIN_DIR_PATH . 'admin/inc/handler/singrichvidhandler.php' );
    44         }       
     44        }
     45           
     46        public static function rich_del_single_video() {
     47            include( CDLZR_YTUBE_PLUGIN_DIR_PATH . 'admin/inc/handler/richdelsingvidhandler.php' );
     48        }   
    4549       
    4650        /**
  • ultimate-youtube-video-player/trunk/admin/inc/ytrichplaylist.php

    r2553498 r2585009  
    4949                                <th>#</th>
    5050                                <th><?php _e('Video Title',CDLZR_PLUG_YTUBE_DOM); ?></th>
    51                                 <th><?php _e('Video ID',CDLZR_PLUG_YTUBE_DOM); ?></th>                 
     51                                <th><?php _e('Video ID',CDLZR_PLUG_YTUBE_DOM); ?></th>
     52                                <th><?php _e('Delete',CDLZR_PLUG_YTUBE_DOM); ?></th>
    5253                            </tr>
    5354                        </thead>
     
    7071                                            <td><?php echo $final_rp_arr['rp_plvidttle']; ?></td>
    7172                                            <td><?php echo $final_rp_arr['rp_vid_id']; ?></td>
     73                                            <td><button data-id="<?php echo $h; ?>" class="btn btn-danger del_sing_ytvid" type="button"><i class="fas fa-trash"></i></button></td>
    7274                                        </tr>
    7375                                    <?php
  • ultimate-youtube-video-player/trunk/admin/libs/js/custom-js.js

    r2553498 r2585009  
    335335                }
    336336            });
    337          });     
     337         });
     338
     339    /*Delete single rich video*/   
     340    jQuery('.del_sing_ytvid').on('click', function(e){
     341        e.preventDefault();
     342        var rich_video_id = jQuery(this).attr('data-id');       
     343        var conf = confirm("Are you sure ?");
     344        if (conf == true) {
     345            jQuery.ajax({
     346                type: 'post',
     347                dataType:'json',
     348                url: ajaxurl,
     349                data:{
     350                    action:"richdelsingytvideo",
     351                    rich_video_id:rich_video_id
     352                },
     353                success: function(response){
     354                    if(response['success_msg_delrsv']==1){
     355                        alert("Deleted Successfully.");
     356                        location.reload(true);
     357                    }else{
     358                        alert("Something went wrong.");
     359                        location.reload(true);
     360                    }
     361                }
     362            });
     363        }   
     364     });   
    338365});
  • ultimate-youtube-video-player/trunk/changelog.txt

    r2553498 r2585009  
    55This file contains older changelog entries, so we can keep the size of the standard WordPress readme.txt file reasonable.
    66For the latest changes, please see the "Changelog" section of the [readme.txt file](https://plugins.svn.wordpress.org/ultimate-youtube-video-player/trunk/readme.txt).
     7
     8= 2.3 =
     9*Release Date - 26 Feburary 2021*
     10* Update feature list
     11* Minor bug fixed
     12* Tested upto Wordpress 5.6.2
    713
    814= 2.2 =
  • ultimate-youtube-video-player/trunk/ultimate-youtubevideo.php

    r2553498 r2585009  
    44 * Plugin URI: https://wordpress.org/plugins/ultimate-youtube-video-player/
    55 * Description: Ultimate YouTube Video Player Plugin shows your youtube videos & subscriber button from related user account and you can manage video using your account token. plugin shows playlist with date time. it is really help in to check the latest video and its status.
    6  * Version: 2.5
     6 * Version: 2.6
    77 * Author: Codelizar
    88 * Author URI: https://codelizar.com
Note: See TracChangeset for help on using the changeset viewer.