Plugin Directory

Changeset 926528


Ignore:
Timestamp:
06/04/2014 03:27:22 PM (12 years ago)
Author:
skustes
Message:

THIS PLUG-IN IS NO LONGER SUPPORTED BY THE DEVELOPER.

Location:
multi-video-box/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • multi-video-box/trunk/multi-video-box.php

    r729509 r926528  
    88Author URI: http://www.nuttymango.com/
    99License: GPL2
     10THIS PLUG-IN IS NO LONGER SUPPORTED BY THE DEVELOPER.
    1011*/
    1112
     
    8586    // Get the SQL for creating the database tables
    8687    $ary_delete_table_sql = mvob_delete_database_tables();
    87    
     88
    8889    // Loop the array, deleting tables
    8990    foreach ( $ary_delete_table_sql AS $table_sql ) {
     
    142143function mvob_public_styles () {
    143144    // Public styles for Content Manager
    144     wp_register_style( 'mvob-public-styles', MVOB_PLUGIN_URL . 'css/mvob_public_style.css' , __FILE__ , '20130515' , 'all' ); 
     145    wp_register_style( 'mvob-public-styles', MVOB_PLUGIN_URL . 'css/mvob_public_style.css' , __FILE__ , '20130515' , 'all' );
    145146    wp_enqueue_style( 'mvob-public-styles' );
    146147
     
    150151    // Include AJAX scripts
    151152    wp_enqueue_script( 'mvob-ajax' , MVOB_PLUGIN_URL . 'js/mvob_public_ajax.js' , array( 'jquery' ) );
    152     wp_localize_script( 'mvob-ajax' , 'mvob_ajax_data' , 
    153         array( 
     153    wp_localize_script( 'mvob-ajax' , 'mvob_ajax_data' ,
     154        array(
    154155            'ajaxurl' => admin_url( 'admin-ajax.php' ),
    155156            'mvob_nonce' => wp_create_nonce( 'mvob_nonce' )
     
    166167    $screen = get_current_screen();
    167168
    168     if ( ( $screen->id == $mvob_main ) || ( $screen->id == $mvob_settings ) || ( $screen->id == $mvob_inst ) || ( $screen->id == $mvob_videos ) || ( $screen->id == $mvob_groups ) ) { 
     169    if ( ( $screen->id == $mvob_main ) || ( $screen->id == $mvob_settings ) || ( $screen->id == $mvob_inst ) || ( $screen->id == $mvob_videos ) || ( $screen->id == $mvob_groups ) ) {
    169170        // Admin styles
    170         wp_register_style( 'mvob-styles', MVOB_PLUGIN_URL . 'css/mvob_style_compressed.css' , __FILE__ , '2013427' , 'all' ); 
     171        wp_register_style( 'mvob-styles', MVOB_PLUGIN_URL . 'css/mvob_style_compressed.css' , __FILE__ , '2013427' , 'all' );
    171172        wp_enqueue_style( 'mvob-styles' );
    172173    }
     
    197198        if ( isset( $_REQUEST['action'] ) && is_numeric( array_search( $_REQUEST['action'] , $ary_mvob_ajax_screens ) ) ) {
    198199            // AJAX for MVOB
    199             wp_register_script( 'mvob-ajax', MVOB_PLUGIN_URL . 'js/mvob_jquery_ajax.js' , __FILE__ ); 
     200            wp_register_script( 'mvob-ajax', MVOB_PLUGIN_URL . 'js/mvob_jquery_ajax.js' , __FILE__ );
    200201            wp_enqueue_script( 'mvob-ajax' );
    201202        }*/
     
    203204        if ( ( $screen->id == $mvob_videos ) || ( $screen->id == $mvob_groups ) ) {
    204205            // Admin scripts
    205             wp_register_script( 'mvob-scripts', MVOB_PLUGIN_URL . 'js/mvob_scripts.js' , __FILE__ ); 
     206            wp_register_script( 'mvob-scripts', MVOB_PLUGIN_URL . 'js/mvob_scripts.js' , __FILE__ );
    206207            wp_enqueue_script( 'mvob-scripts' );
    207208        }
     
    210211    if ( $screen->id == $mvob_inst ) {
    211212        // Javascript for Instructions page
    212         wp_register_script( 'mvob-inst', MVOB_PLUGIN_URL . 'js/instructions.js' , __FILE__ ); 
     213        wp_register_script( 'mvob-inst', MVOB_PLUGIN_URL . 'js/instructions.js' , __FILE__ );
    213214        wp_enqueue_script( 'mvob-inst' );
    214215    }
     
    230231}
    231232
    232 /* Function to initialize Admin 
     233/* Function to initialize Admin
    233234------------------------------ */
    234235function mvob_admin_init() {
  • multi-video-box/trunk/readme.txt

    r729509 r926528  
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 This plug-in allows you to display groups of videos in a single box.
     11This plug-in allows you to display groups of videos in a single box.
     12
     13THIS PLUG-IN IS NO LONGER SUPPORTED BY THE DEVELOPER.
    1214
    1315== Description ==
    1416
    1517This plug-in allows you to display groups of videos in a single box.  It uses an AJAX-driven tab system to load selected videos.  The plug-in currently supports the use of videos hosted on YouTube, Vimeo, Daily Motion, Vevo, Metacafe, MuchShare, NowVideo, VideoMega, ShareVid, Flashx.TV, and Putlocker.  CSS is fully-customizable.
     18
     19THIS PLUG-IN IS NO LONGER SUPPORTED BY THE DEVELOPER.
    1620
    1721== Installation ==
Note: See TracChangeset for help on using the changeset viewer.