Plugin Directory

Changeset 191173


Ignore:
Timestamp:
01/07/2010 06:58:51 PM (16 years ago)
Author:
2by2host
Message:
 
Location:
save-simfany-any-video-embedder/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • save-simfany-any-video-embedder/trunk/readme.txt

    r171772 r191173  
    55Requires at least: 2.8.5
    66Tested up to: 2.8.5
    7 Stable tag: 1.0
     7Stable tag: 1.1
    88
    99This plugin allows you to quickly embed videos into your posts, pages or comments using custom player size.
     
    4343== Changelog ==
    4444
     45= 1.1 =
     46* A couple of paths related issues resolved.
     47
    4548= 1.0 =
    4649* Initial release.
  • save-simfany-any-video-embedder/trunk/simfany.php

    r171724 r191173  
    1111define('SIMFANY_VERSION', '1.0');
    1212
    13 $folder = '/wp-content/plugins/simfany';
    14 @include_once( ABSPATH . '/wp-content/plugins/simfany/simfany_api.php' );
     13$folder = '/wp-content/plugins/save-simfany-any-video-embedder';
     14@include_once( ABSPATH . $folder . '/simfany_api.php' );
    1515
    1616function simfany_config_page() {
     
    113113        </table>
    114114        <p class="submit"><input type="submit"  class="button-primary" value="Save Changes" name="send"></p>
    115        
     115
    116116        </form>
    117117        </div>
     
    141141    if($simfany_video=="video")
    142142    {
    143         $plugin_array['simfany'] = get_bloginfo('wpurl').'/wp-content/plugins/simfany/tinymce/editor_plugin.js';
     143        $plugin_array['simfany'] = get_bloginfo('wpurl').'/wp-content/plugins/save-simfany-any-video-embedder/tinymce/editor_plugin.js';
    144144    }
    145145    if($simfany_video=="simfany")
    146146    {
    147         $plugin_array['simfany'] = get_bloginfo('wpurl').'/wp-content/plugins/simfany/tinymce/editor_plugin2.js';
     147        $plugin_array['simfany'] = get_bloginfo('wpurl').'/wp-content/plugins/save-simfany-any-video-embedder/tinymce/editor_plugin2.js';
    148148    }
    149149    return $plugin_array;
     
    152152
    153153function simfany_plugin_action_links( $links, $file ) {
    154    
     154
    155155
    156156    $url = "options-general.php?page=simfany-config";
     
    173173
    174174function add_button(){
    175    
     175
    176176        wp_print_scripts( 'quicktags' );
    177177
     
    200200        echo "/* ]]> */"."\n";
    201201        echo "</script>"."\n";
    202    
     202
    203203}
    204204add_filter( 'content_save_pre', 'simfany_api_input' );
Note: See TracChangeset for help on using the changeset viewer.