Plugin Directory

Changeset 1200772


Ignore:
Timestamp:
07/17/2015 06:38:42 AM (10 years ago)
Author:
phpaddicted
Message:

tagging version 4.5.2

Location:
igit-related-posts-with-thumb-images-after-posts
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • igit-related-posts-with-thumb-images-after-posts/tags/4.5.2/Readme.txt

    r1200066 r1200772  
    66Requires at least: 3.0
    77Tested up to: 4.2.2
    8 Stable tag: 4.5.1
     8Stable tag: 4.5.2
    99
    1010
     
    8181
    8282== Changelog ==
     83= 4.5.2 =
     84- Fix Bug - Can't add media in post/page.
     85
    8386= 4.5.1 =
    8487- Added option to upload default no imnage from settings page.
  • igit-related-posts-with-thumb-images-after-posts/tags/4.5.2/igit-rpwt.php

    r1200066 r1200772  
    22/*
    33Plugin Name: IGIT Related Post With Thumb
    4 Version:     4.5.1
     4Version:     4.5.2
    55Plugin URI:  http://www.hackingethics.com/blog/wordpress-plugins/igit-related-posts-with-thumb-image-after-posts/
    66Description: Show related posts with thumb image after Posts. Ajax Base Admin options.Options for dynamic height and width of Thumb.Plugin By <a href="http://www.hackingethics.com"><strong>Hacking Ethics</strong></a>.You can <a href="options-general.php?page=igit-rpwt">Configure...</a> it from <a href="options-general.php?page=igit-rpwt">Here.
  • igit-related-posts-with-thumb-images-after-posts/tags/4.5.2/inc/admin_core.php

    r1200066 r1200772  
    33{
    44    wp_enqueue_style('my-style', IGIT_RPWT_CSS_URL.'/igit_style.css');
     5    if (isset($_GET['page']) && $_GET['page'] == 'igit-rpwt') {
     6        wp_enqueue_style('thickbox');
     7    }
     8   
    59}
    610function igit_admin_enqueue_script()
     
    812    wp_enqueue_script('jquery-form');
    913    wp_enqueue_script('jscolor', IGIT_RPWT_JS_URL.'/jscolor.js');
     14    if (isset($_GET['page']) && $_GET['page'] == 'igit-rpwt') {
     15        wp_enqueue_script('media-upload');
     16        wp_enqueue_script('thickbox');
     17        wp_register_script('my-upload', IGIT_RPWT_JS_URL.'/my-script.js', array('jquery','media-upload','thickbox'));
     18        wp_enqueue_script('my-upload');
     19    }
     20   
    1021}
    1122function igit_plugin_menu()
     
    1829    return $res_val;
    1930}
    20 function igitrpwt_admin_scripts() {
    21   wp_enqueue_script('media-upload');
    22   wp_enqueue_script('thickbox');
    23   wp_register_script('my-upload', IGIT_RPWT_JS_URL.'/my-script.js', array('jquery','media-upload','thickbox'));
    24   wp_enqueue_script('my-upload');
    25  }
    26 function igitrpwt_admin_styles() {
    27   wp_enqueue_style('thickbox');
    28  }
    29  add_action('admin_print_scripts', 'igitrpwt_admin_scripts');
    30  add_action('admin_print_styles', 'igitrpwt_admin_styles');
     31
    3132function igit_action_javascript()
    3233{
  • igit-related-posts-with-thumb-images-after-posts/trunk/Readme.txt

    r1200066 r1200772  
    66Requires at least: 3.0
    77Tested up to: 4.2.2
    8 Stable tag: 4.5.1
     8Stable tag: 4.5.2
    99
    1010
     
    8181
    8282== Changelog ==
     83= 4.5.2 =
     84- Fix Bug - Can't add media in post/page.
     85
    8386= 4.5.1 =
    8487- Added option to upload default no imnage from settings page.
  • igit-related-posts-with-thumb-images-after-posts/trunk/igit-rpwt.php

    r1200066 r1200772  
    22/*
    33Plugin Name: IGIT Related Post With Thumb
    4 Version:     4.5.1
     4Version:     4.5.2
    55Plugin URI:  http://www.hackingethics.com/blog/wordpress-plugins/igit-related-posts-with-thumb-image-after-posts/
    66Description: Show related posts with thumb image after Posts. Ajax Base Admin options.Options for dynamic height and width of Thumb.Plugin By <a href="http://www.hackingethics.com"><strong>Hacking Ethics</strong></a>.You can <a href="options-general.php?page=igit-rpwt">Configure...</a> it from <a href="options-general.php?page=igit-rpwt">Here.
  • igit-related-posts-with-thumb-images-after-posts/trunk/inc/admin_core.php

    r1200066 r1200772  
    33{
    44    wp_enqueue_style('my-style', IGIT_RPWT_CSS_URL.'/igit_style.css');
     5    if (isset($_GET['page']) && $_GET['page'] == 'igit-rpwt') {
     6        wp_enqueue_style('thickbox');
     7    }
     8   
    59}
    610function igit_admin_enqueue_script()
     
    812    wp_enqueue_script('jquery-form');
    913    wp_enqueue_script('jscolor', IGIT_RPWT_JS_URL.'/jscolor.js');
     14    if (isset($_GET['page']) && $_GET['page'] == 'igit-rpwt') {
     15        wp_enqueue_script('media-upload');
     16        wp_enqueue_script('thickbox');
     17        wp_register_script('my-upload', IGIT_RPWT_JS_URL.'/my-script.js', array('jquery','media-upload','thickbox'));
     18        wp_enqueue_script('my-upload');
     19    }
     20   
    1021}
    1122function igit_plugin_menu()
     
    1829    return $res_val;
    1930}
    20 function igitrpwt_admin_scripts() {
    21   wp_enqueue_script('media-upload');
    22   wp_enqueue_script('thickbox');
    23   wp_register_script('my-upload', IGIT_RPWT_JS_URL.'/my-script.js', array('jquery','media-upload','thickbox'));
    24   wp_enqueue_script('my-upload');
    25  }
    26 function igitrpwt_admin_styles() {
    27   wp_enqueue_style('thickbox');
    28  }
    29  add_action('admin_print_scripts', 'igitrpwt_admin_scripts');
    30  add_action('admin_print_styles', 'igitrpwt_admin_styles');
     31
    3132function igit_action_javascript()
    3233{
Note: See TracChangeset for help on using the changeset viewer.