Changeset 196530
- Timestamp:
- 01/22/2010 08:50:37 AM (16 years ago)
- Location:
- my-link-order/trunk
- Files:
-
- 2 edited
-
mylinkorder.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
my-link-order/trunk/mylinkorder.php
r176353 r196530 4 4 Plugin URI: http://www.geekyweekly.com/mylinkorder 5 5 Description: My Link Order allows you to set the order in which links and link categories will appear in the sidebar. Uses a drag and drop interface for ordering. Adds a widget with additional options for easy installation on widgetized themes. 6 Version: 2. 8.76 Version: 2.9.1 7 7 Author: Andrew Charlton 8 8 Author URI: http://www.geekyweekly.com … … 410 410 <label for="<?php echo $this->get_field_id('exclude_category'); ?>"><?php _e( 'Exclude Category:', 'mylinkorder' ); ?></label> <input type="text" value="<?php echo $exclude_category; ?>" name="<?php echo $this->get_field_name('exclude_category'); ?>" id="<?php echo $this->get_field_id('exclude_category'); ?>" class="widefat" /> 411 411 <br /> 412 <small><?php _e( 'Link Category IDs, separated by commas.' ); ?></small>412 <small><?php _e( 'Link Category IDs, separated by commas.', 'mylinkorder' ); ?></small> 413 413 </p> 414 414 <p> 415 415 <label for="<?php echo $this->get_field_id('category'); ?>"><?php _e( 'Include Category:', 'mylinkorder' ); ?></label> <input type="text" value="<?php echo $category; ?>" name="<?php echo $this->get_field_name('category'); ?>" id="<?php echo $this->get_field_id('category'); ?>" class="widefat" /> 416 416 <br /> 417 <small><?php _e( 'Link Category IDs, separated by commas.' ); ?></small>417 <small><?php _e( 'Link Category IDs, separated by commas.', 'mylinkorder' ); ?></small> 418 418 </p> 419 419 <p> 420 420 <label for="<?php echo $this->get_field_id('exclude'); ?>"><?php _e( 'Exclude Link:', 'mylinkorder' ); ?></label> <input type="text" value="<?php echo $exclude; ?>" name="<?php echo $this->get_field_name('exclude'); ?>" id="<?php echo $this->get_field_id('exclude'); ?>" class="widefat" /> 421 421 <br /> 422 <small><?php _e( 'Link IDs, separated by commas.' ); ?></small>422 <small><?php _e( 'Link IDs, separated by commas.', 'mylinkorder' ); ?></small> 423 423 </p> 424 424 <p> 425 425 <label for="<?php echo $this->get_field_id('include'); ?>"><?php _e( 'Include Link:', 'mylinkorder' ); ?></label> <input type="text" value="<?php echo $include; ?>" name="<?php echo $this->get_field_name('include'); ?>" id="<?php echo $this->get_field_id('include'); ?>" class="widefat" /> 426 426 <br /> 427 <small><?php _e( 'Link IDs, separated by commas. Use with Include Category.' ); ?></small>428 </p> 429 430 <p> 431 <input class="checkbox" type="checkbox" <?php checked( $instance['categorize'], true) ?> id="<?php echo $this->get_field_id('categorize'); ?>" name="<?php echo $this->get_field_name('categorize'); ?>" />427 <small><?php _e( 'Link IDs, separated by commas. Use with Include Category.', 'mylinkorder' ); ?></small> 428 </p> 429 430 <p> 431 <input class="checkbox" type="checkbox" <?php checked( (bool) $instance['categorize'], true) ?> id="<?php echo $this->get_field_id('categorize'); ?>" name="<?php echo $this->get_field_name('categorize'); ?>" /> 432 432 <label for="<?php echo $this->get_field_id('categorize'); ?>"><?php _e('Show Uncategorized', 'mylinkorder'); ?></label><br /> 433 <input class="checkbox" type="checkbox" <?php checked( $instance['show_images'], true) ?> id="<?php echo $this->get_field_id('show_images'); ?>" name="<?php echo $this->get_field_name('show_images'); ?>" />433 <input class="checkbox" type="checkbox" <?php checked( (bool) $instance['show_images'], true) ?> id="<?php echo $this->get_field_id('show_images'); ?>" name="<?php echo $this->get_field_name('show_images'); ?>" /> 434 434 <label for="<?php echo $this->get_field_id('show_images'); ?>"><?php _e('Show Link Image', 'mylinkorder'); ?></label><br /> 435 <input class="checkbox" type="checkbox" <?php checked( $instance['show_name'], true) ?> id="<?php echo $this->get_field_id('show_name'); ?>" name="<?php echo $this->get_field_name('show_name'); ?>" />435 <input class="checkbox" type="checkbox" <?php checked( (bool) $instance['show_name'], true) ?> id="<?php echo $this->get_field_id('show_name'); ?>" name="<?php echo $this->get_field_name('show_name'); ?>" /> 436 436 <label for="<?php echo $this->get_field_id('show_name'); ?>"><?php _e('Show Link Name', 'mylinkorder'); ?></label><br /> 437 <input class="checkbox" type="checkbox" <?php checked( $instance['show_description'], true) ?> id="<?php echo $this->get_field_id('show_description'); ?>" name="<?php echo $this->get_field_name('show_description'); ?>" />437 <input class="checkbox" type="checkbox" <?php checked( (bool) $instance['show_description'], true) ?> id="<?php echo $this->get_field_id('show_description'); ?>" name="<?php echo $this->get_field_name('show_description'); ?>" /> 438 438 <label for="<?php echo $this->get_field_id('show_description'); ?>"><?php _e('Show Link Description', 'mylinkorder'); ?></label><br /> 439 <input class="checkbox" type="checkbox" <?php checked( $instance['show_rating'], true) ?> id="<?php echo $this->get_field_id('show_rating'); ?>" name="<?php echo $this->get_field_name('show_rating'); ?>" />439 <input class="checkbox" type="checkbox" <?php checked( (bool) $instance['show_rating'], true) ?> id="<?php echo $this->get_field_id('show_rating'); ?>" name="<?php echo $this->get_field_name('show_rating'); ?>" /> 440 440 <label for="<?php echo $this->get_field_id('show_rating'); ?>"><?php _e('Show Link Rating', 'mylinkorder'); ?></label><br /> 441 <input class="checkbox" type="checkbox" <?php checked( $instance['show_updated'], true) ?> id="<?php echo $this->get_field_id('show_updated'); ?>" name="<?php echo $this->get_field_name('show_updated'); ?>" />441 <input class="checkbox" type="checkbox" <?php checked( (bool) $instance['show_updated'], true) ?> id="<?php echo $this->get_field_id('show_updated'); ?>" name="<?php echo $this->get_field_name('show_updated'); ?>" /> 442 442 <label for="<?php echo $this->get_field_id('show_updated'); ?>"><?php _e('Show Update Date', 'mylinkorder'); ?></label><br /> 443 <input class="checkbox" type="checkbox" <?php checked( $instance['hide_invisible'], true) ?> id="<?php echo $this->get_field_id('hide_invisible'); ?>" name="<?php echo $this->get_field_name('hide_invisible'); ?>" />443 <input class="checkbox" type="checkbox" <?php checked( (bool) $instance['hide_invisible'], true) ?> id="<?php echo $this->get_field_id('hide_invisible'); ?>" name="<?php echo $this->get_field_name('hide_invisible'); ?>" /> 444 444 <label for="<?php echo $this->get_field_id('hide_invisible'); ?>"><?php _e('Show Invisible', 'mylinkorder'); ?></label><br /> 445 445 </p> -
my-link-order/trunk/readme.txt
r176352 r196530 4 4 Tags: link, category, categories, order, sidebar, widget 5 5 Requires at least: 2.8 6 Tested up to: 2. 8.67 Stable tag: 2. 8.76 Tested up to: 2.9.1 7 Stable tag: 2.9.1 8 8 9 9 My Link Order allows you to set the order in which links and link categories will appear in the sidebar. … … 22 22 == Changelog == 23 23 24 = 2.9.1 = 25 * Fixed widget checkboxes not holding their value. 26 * Fixed several missing localization strings. 24 27 = 2.8.7 = 25 28 * Small bug fix on widget's Category Order option
Note: See TracChangeset
for help on using the changeset viewer.