Changeset 3081226
- Timestamp:
- 05/04/2024 11:10:00 AM (23 months ago)
- Location:
- full-screen-images
- Files:
-
- 5 edited
- 2 copied
-
tags/1.0.2 (copied) (copied from full-screen-images/trunk)
-
tags/1.0.2/README.txt (modified) (1 diff)
-
tags/1.0.2/trunk (copied) (copied from full-screen-images/trunk)
-
tags/1.0.2/trunk/README.txt (modified) (2 diffs)
-
tags/1.0.2/trunk/full-screen-images.php (modified) (3 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/full-screen-images.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
full-screen-images/tags/1.0.2/README.txt
r2106572 r3081226 3 3 Tags: image, full screen 4 4 Requires at least: 3.0.1 5 Tested up to: 5.2.15 Tested up to: 4.8 6 6 Stable tag: 1.0.1 7 7 License: GPLv2 or later -
full-screen-images/tags/1.0.2/trunk/README.txt
r2106572 r3081226 3 3 Tags: image, full screen 4 4 Requires at least: 3.0.1 5 Tested up to: 5.2.16 Stable tag: 1.0. 15 Tested up to: 6.5.2 6 Stable tag: 1.0.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 41 41 42 42 == Changelog == 43 = 1.0.2 = 44 * PHPCS Fixes. 45 * Tested upto WordPress 6.5.2 43 46 44 47 = 1.0.1 = -
full-screen-images/tags/1.0.2/trunk/full-screen-images.php
r1675351 r3081226 11 11 * Plugin URI: https://github.com/kiranpotphode/full-screen-images 12 12 * Description: Viewing images on the full screen. Using the touch/mouse position for panning. 13 * Version: 1.0. 113 * Version: 1.0.2 14 14 * Author: Kiran Potphode 15 15 * Author URI: https://github.com/kiranpotphode/full-screen-images … … 36 36 function full_screen_images_scripts() { 37 37 38 wp_enqueue_script( 'intense-images-js', plugin_dir_url( __FILE__ ) . 'js/intense.min.js', array( 'jquery' ), false, false );38 wp_enqueue_script( 'intense-images-js', plugin_dir_url( __FILE__ ) . 'js/intense.min.js', array( 'jquery' ), false, false ); 39 39 40 wp_enqueue_script( 'full-screen-images-js', plugin_dir_url( __FILE__ ) . 'js/full-screen-images.js', array( 'jquery' ), false, false); 41 40 wp_enqueue_script( 'full-screen-images-js', plugin_dir_url( __FILE__ ) . 'js/full-screen-images.js', array( 'jquery' ), false, false ); 42 41 } 43 42 … … 67 66 echo '<p>This plugin is based on <a href="https://github.com/tholman/intense-images" target="_blank">Intense Image Viewer</a> javascript liabrary by <a href="https://github.com/tholman" target="_blank">Tim Holman</a></p>'; 68 67 echo '</div>'; 69 70 68 } 71 69 72 add_action( 'admin_menu', 'register_full_screen_images_submenu_page');70 add_action( 'admin_menu', 'register_full_screen_images_submenu_page' ); 73 71 74 72 /** 75 73 * Add settings link on plugin page 76 74 */ 77 function full_screen_images_settings_link( $links) {78 $settings_link = '<a href="options-general.php?page=full-screen-images-page.php">More Info</a>';79 array_unshift($links, $settings_link);80 return $links;75 function full_screen_images_settings_link( $links ) { 76 $settings_link = '<a href="options-general.php?page=full-screen-images-page.php">More Info</a>'; 77 array_unshift( $links, $settings_link ); 78 return $links; 81 79 } 82 80 83 $plugin = plugin_basename( __FILE__);84 add_filter( "plugin_action_links_$plugin", 'full_screen_images_settings_link' );81 $plugin = plugin_basename( __FILE__ ); 82 add_filter( "plugin_action_links_$plugin", 'full_screen_images_settings_link' ); -
full-screen-images/trunk/README.txt
r2106572 r3081226 3 3 Tags: image, full screen 4 4 Requires at least: 3.0.1 5 Tested up to: 5.2.16 Stable tag: 1.0. 15 Tested up to: 6.5.2 6 Stable tag: 1.0.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 41 41 42 42 == Changelog == 43 = 1.0.2 = 44 * PHPCS Fixes. 45 * Tested upto WordPress 6.5.2 43 46 44 47 = 1.0.1 = -
full-screen-images/trunk/full-screen-images.php
r1675351 r3081226 11 11 * Plugin URI: https://github.com/kiranpotphode/full-screen-images 12 12 * Description: Viewing images on the full screen. Using the touch/mouse position for panning. 13 * Version: 1.0. 113 * Version: 1.0.2 14 14 * Author: Kiran Potphode 15 15 * Author URI: https://github.com/kiranpotphode/full-screen-images … … 36 36 function full_screen_images_scripts() { 37 37 38 wp_enqueue_script( 'intense-images-js', plugin_dir_url( __FILE__ ) . 'js/intense.min.js', array( 'jquery' ), false, false );38 wp_enqueue_script( 'intense-images-js', plugin_dir_url( __FILE__ ) . 'js/intense.min.js', array( 'jquery' ), false, false ); 39 39 40 wp_enqueue_script( 'full-screen-images-js', plugin_dir_url( __FILE__ ) . 'js/full-screen-images.js', array( 'jquery' ), false, false); 41 40 wp_enqueue_script( 'full-screen-images-js', plugin_dir_url( __FILE__ ) . 'js/full-screen-images.js', array( 'jquery' ), false, false ); 42 41 } 43 42 … … 67 66 echo '<p>This plugin is based on <a href="https://github.com/tholman/intense-images" target="_blank">Intense Image Viewer</a> javascript liabrary by <a href="https://github.com/tholman" target="_blank">Tim Holman</a></p>'; 68 67 echo '</div>'; 69 70 68 } 71 69 72 add_action( 'admin_menu', 'register_full_screen_images_submenu_page');70 add_action( 'admin_menu', 'register_full_screen_images_submenu_page' ); 73 71 74 72 /** 75 73 * Add settings link on plugin page 76 74 */ 77 function full_screen_images_settings_link( $links) {78 $settings_link = '<a href="options-general.php?page=full-screen-images-page.php">More Info</a>';79 array_unshift($links, $settings_link);80 return $links;75 function full_screen_images_settings_link( $links ) { 76 $settings_link = '<a href="options-general.php?page=full-screen-images-page.php">More Info</a>'; 77 array_unshift( $links, $settings_link ); 78 return $links; 81 79 } 82 80 83 $plugin = plugin_basename( __FILE__);84 add_filter( "plugin_action_links_$plugin", 'full_screen_images_settings_link' );81 $plugin = plugin_basename( __FILE__ ); 82 add_filter( "plugin_action_links_$plugin", 'full_screen_images_settings_link' );
Note: See TracChangeset
for help on using the changeset viewer.