PluginProbe ʕ •ᴥ•ʔ
Video Playlist for YouTube / 6.0
Video Playlist for YouTube v6.0
trunk 1.0 2.0 3.0 4.0 6.0 6.1 6.2 6.3 6.4 6.5 6.6 6.7 6.7.1 6.8 6.9
video-playlist-for-youtube / vpfy-vplaylist-functions.php
video-playlist-for-youtube Last commit date
includes 2 years ago index.php 2 years ago readme.txt 2 years ago video-playlist-ytb-plugin.php 2 years ago vpfy-api-playlist-shortcode.php 2 years ago vpfy-settings-pg.php 2 years ago vpfy-vplaylist-functions.php 2 years ago
vpfy-vplaylist-functions.php
33 lines
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 exit; // Exit if accessed directly
4 }
5 /*Register css and Js for Admin/back end*/
6 add_action('admin_enqueue_scripts','vpfy_vplay_admin_enque');
7 function vpfy_vplay_admin_enque(){
8 wp_register_script('vpfyt-vplay-repeatmeta', VID_PLYLST_PLUGINURL.'includes/js/vpfy-vplay-metabox.js');
9 wp_register_script('vpfyt-vplay-settngpg', VID_PLYLST_PLUGINURL.'includes/js/vpfy-settings-page.js');
10 wp_register_style('vpfy-vplay-adminstyle', VID_PLYLST_PLUGINURL.'includes/css/vpfy-vplaylist-admin-style.css');
11 wp_register_style('vpfy-vplay-settings', VID_PLYLST_PLUGINURL.'includes/css/vpfy-settings-page.css');
12 }
13
14 /*Register CSS and JS for front end*/
15 add_action('wp_enqueue_scripts','vpfy_vplaylist_frontend_display_gallery');
16 function vpfy_vplaylist_frontend_display_gallery(){
17 if (!empty(get_option('vpfy_vid_length')) && get_option('vpfy_vid_length') == 1){
18 $showlen = 'yes';
19 }
20 else{
21 $showlen = 'no';
22 }
23
24 wp_register_script('vpfy-playlist-min', VID_PLYLST_PLUGINURL.'includes/js/vpfy-vplay-playlist-min.js', array('jquery'), '1.0');
25 wp_register_script('vpfy-playlist-video', VID_PLYLST_PLUGINURL.'includes/js/vpfy-vplay-playlist-video.js','', '1.0');
26
27 wp_localize_script( 'vpfy-playlist-video', 'yt_ajx_obj',
28 array( 'ajax_url' => admin_url( 'admin-ajax.php' ), 'vpfyshow_length' => $showlen ) );
29 wp_register_style('vpfy-vplay-galcss', VID_PLYLST_PLUGINURL.'includes/css/vpfu-vplaylist-gallery.css');
30 wp_register_style('vpfy-playlist-ryt-no-thumb', VID_PLYLST_PLUGINURL.'includes/css/vpfy-vplaylist-skin-right-no-thumb.css');
31 wp_register_style('vpfy-playlist-ryt-thumb', VID_PLYLST_PLUGINURL.'includes/css/vpfy-vplaylist-skin-right-thumb.css');
32 wp_register_style('vpfy-playlist-ryt-ttl-only', VID_PLYLST_PLUGINURL.'includes/css/vpfy-vplaylist-skin-right-title-only.css');
33 }