Changeset 2753136
- Timestamp:
- 07/07/2022 02:34:36 PM (4 years ago)
- Location:
- image-slider-with-description/trunk
- Files:
-
- 3 edited
-
image-slider-with-description.php (modified) (2 diffs)
-
pages/image-management-edit.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
image-slider-with-description/trunk/image-slider-with-description.php
r2651580 r2753136 5 5 Description: Image slider with description WordPress plugin is a Jquery based image slideshow script that incorporates some of your most requested features all rolled into one. Not only image this slideshow have images, title and description. 6 6 Author: Gopi Ramasamy 7 Version: 9. 07 Version: 9.1 8 8 Author URI: http://www.gopiplus.com/work/2011/11/04/wordpress-plugin-image-slider-with-description/ 9 9 Donate link: http://www.gopiplus.com/work/2011/11/04/wordpress-plugin-image-slider-with-description/ … … 31 31 32 32 if ( ! defined( 'WP_ImgSlider_ADMIN_URL' ) ) 33 define( 'WP_ImgSlider_ADMIN_URL', get_option('siteurl') . '/wp-admin/admin.php?page=ImgSlider_image_management');33 if(!defined('WP_ImgSlider_ADMIN_URL')) define( 'WP_ImgSlider_ADMIN_URL', site_url( '/wp-admin/admin.php?page=ImgSlider_image_management' ) ); 34 34 35 35 function ImgSlider_install() -
image-slider-with-description/trunk/pages/image-management-edit.php
r2265045 r2753136 172 172 <p><?php _e('Where is the picture located on the internet', 'image-slider-with-description'); ?></p> 173 173 <label for="tag-link"><?php _e('Enter target link', 'image-slider-with-description'); ?></label> 174 <input name="ImgSlider_link" type="text" id="ImgSlider_link" value="<?php echo $form['ImgSlider_link']; ?>" size="80" />174 <input name="ImgSlider_link" type="text" id="ImgSlider_link" value="<?php echo esc_html($form['ImgSlider_link']); ?>" size="80" /> 175 175 <p><?php _e('When someone clicks on the picture, where do you want to send them', 'image-slider-with-description'); ?></p> 176 176 <label for="tag-target"><?php _e('Enter target option', 'image-slider-with-description'); ?></label> … … 183 183 <p><?php _e('Do you want to open link in new window?', 'image-slider-with-description'); ?></p> 184 184 <label for="tag-title"><?php _e('Enter image title', 'image-slider-with-description'); ?></label> 185 <input name="ImgSlider_title" type="text" id="ImgSlider_title" value="<?php echo $form['ImgSlider_title']; ?>" size="80" />185 <input name="ImgSlider_title" type="text" id="ImgSlider_title" value="<?php echo esc_html($form['ImgSlider_title']); ?>" size="80" /> 186 186 <p><?php _e('Enter the image title. The title will display on the image within the slideshow.', 'image-slider-with-description'); ?></p> 187 187 <label for="tag-desc"><?php _e('Enter image description', 'image-slider-with-description'); ?></label> 188 <input name="ImgSlider_desc" type="text" id="ImgSlider_desc" value="<?php echo $form['ImgSlider_desc']; ?>" size="80" />188 <input name="ImgSlider_desc" type="text" id="ImgSlider_desc" value="<?php echo esc_html($form['ImgSlider_desc']); ?>" size="80" /> 189 189 <p><?php _e('Enter image description', 'image-slider-with-description'); ?></p> 190 190 <label for="tag-select-gallery-group"><?php _e('Select gallery group', 'image-slider-with-description'); ?></label> … … 209 209 <p><?php _e('Do you want the picture to show in your galler?', 'image-slider-with-description'); ?></p> 210 210 <label for="tag-display-order"><?php _e('Display order', 'image-slider-with-description'); ?></label> 211 <input name="ImgSlider_order" type="text" id="ImgSlider_order" size="10" value="<?php echo $form['ImgSlider_order']; ?>" maxlength="3" />211 <input name="ImgSlider_order" type="text" id="ImgSlider_order" size="10" value="<?php echo esc_html($form['ImgSlider_order']); ?>" maxlength="3" /> 212 212 <p><?php _e('What order should the picture be played in. should it come 1st, 2nd, 3rd, etc.', 'image-slider-with-description'); ?></p> 213 213 <input type="hidden" name="ImgSlider_form_submit" value="yes"/> -
image-slider-with-description/trunk/readme.txt
r2651580 r2753136 6 6 Tags: image, slider, slideshow 7 7 Requires at least: 3.4 8 Tested up to: 5.99 Stable tag: 9. 08 Tested up to: 6.0 9 Stable tag: 9.1 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 188 188 1. Tested up to 5.9 189 189 190 = 9.1 = 191 192 1. Tested up to 6.0 193 190 194 == Upgrade Notice == 191 195 … … 314 318 315 319 1. Tested up to 5.9 320 321 = 9.1 = 322 323 1. Tested up to 6.0
Note: See TracChangeset
for help on using the changeset viewer.