Plugin Directory

Changeset 196530


Ignore:
Timestamp:
01/22/2010 08:50:37 AM (16 years ago)
Author:
froman118
Message:
 
Location:
my-link-order/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • my-link-order/trunk/mylinkorder.php

    r176353 r196530  
    44Plugin URI: http://www.geekyweekly.com/mylinkorder
    55Description: 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.7
     6Version: 2.9.1
    77Author: Andrew Charlton
    88Author URI: http://www.geekyweekly.com
     
    410410            <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" />
    411411            <br />
    412             <small><?php _e( 'Link Category IDs, separated by commas.' ); ?></small>
     412            <small><?php _e( 'Link Category IDs, separated by commas.', 'mylinkorder' ); ?></small>
    413413        </p>
    414414        <p>
    415415            <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" />
    416416            <br />
    417             <small><?php _e( 'Link Category IDs, separated by commas.' ); ?></small>
     417            <small><?php _e( 'Link Category IDs, separated by commas.', 'mylinkorder' ); ?></small>
    418418        </p>
    419419        <p>
    420420            <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" />
    421421            <br />
    422             <small><?php _e( 'Link IDs, separated by commas.' ); ?></small>
     422            <small><?php _e( 'Link IDs, separated by commas.', 'mylinkorder' ); ?></small>
    423423        </p>
    424424        <p>
    425425            <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" />
    426426            <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'); ?>" />
    432432            <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'); ?>" />
    434434            <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'); ?>" />
    436436            <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'); ?>" />
    438438            <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'); ?>" />
    440440            <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'); ?>" />
    442442            <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'); ?>" />
    444444            <label for="<?php echo $this->get_field_id('hide_invisible'); ?>"><?php _e('Show Invisible', 'mylinkorder'); ?></label><br />
    445445        </p>
  • my-link-order/trunk/readme.txt

    r176352 r196530  
    44Tags: link, category, categories, order, sidebar, widget
    55Requires at least: 2.8
    6 Tested up to: 2.8.6
    7 Stable tag: 2.8.7
     6Tested up to: 2.9.1
     7Stable tag: 2.9.1
    88
    99My Link Order allows you to set the order in which links and link categories will appear in the sidebar.
     
    2222== Changelog ==
    2323
     24= 2.9.1 =
     25* Fixed widget checkboxes not holding their value.
     26* Fixed several missing localization strings.
    2427= 2.8.7 =
    2528* Small bug fix on widget's Category Order option
Note: See TracChangeset for help on using the changeset viewer.