Plugin Directory

Changeset 605567


Ignore:
Timestamp:
09/28/2012 11:48:46 PM ( 12 years ago)
Author:
joshcanhelp
Message:

adding version 0.9.1 and screenshots, changing readme.txt

Location:
proper-widgets
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • proper-widgets/trunk/proper-widgets.php

    r582720 r605567  
    eleven eleven */
    twelve twelve
    thirteen   require_once(plugin_dir_path( __FILE__ ) . ' the-widgets/proper-article-widget.php');
    fourteen   require_once(plugin_dir_path( __FILE__ ) . ' the-widgets/proper-rss-widget.php');
    fifteen   require_once(plugin_dir_path( __FILE__ ) . ' the-widgets/proper-gnews-widget.php');
    sixteen   require_once(plugin_dir_path( __FILE__ ) . ' the-widgets/proper-linked-image-widget.php');
    seventeen   require_once(plugin_dir_path( __FILE__ ) . ' the-widgets/proper-links-widget.php');
    eighteen   require_once(plugin_dir_path( __FILE__ ) . ' the-widgets/proper-article-widget.php');
    nineteen   require_once(plugin_dir_path( __FILE__ ) . ' the-widgets/proper-posts-widget.php');
      thirteen require_once('settings.php');
      fourteen
      fifteen // Custom plugin settings
      sixteen global $pwidget_options_saved;
      seventeen $pwidget_options_saved = get_option('pwidget_settings_array');
      eighteen
      nineteen require_once('settings.php');
      twenty
      twenty-one // Require widget files if settings allow for it
      twenty-two
      twenty-three if ($pwidget_options_saved['widget_article'] === 'yes')
      twenty-four     require_once(plugin_dir_path( __FILE__ ) . ' the-widgets/proper-article-widget.php');
      twenty-five    
      twenty-six if ($pwidget_options_saved['widget_gnews'] === 'yes')
      twenty-seven     require_once(plugin_dir_path( __FILE__ ) . ' the-widgets/proper-gnews-widget.php');
      twenty-eight
      twenty-nine if ($pwidget_options_saved['widget_linkedimg'] === 'yes')
      thirty     require_once(plugin_dir_path( __FILE__ ) . ' the-widgets/proper-linked-image-widget.php');
      thirty-one
      thirty-two if ($pwidget_options_saved['widget_links'] === 'yes')
      thirty-three     require_once(plugin_dir_path( __FILE__ ) . ' the-widgets/proper-links-widget.php');
      thirty-four
      thirty-five if ($pwidget_options_saved['widget_posts'] === 'yes')
      thirty-six     require_once(plugin_dir_path( __FILE__ ) . ' the-widgets/proper-posts-widget.php');
      thirty-seven
      thirty-eight if ($pwidget_options_saved['widget_rss'] === 'yes')
      thirty-nine     require_once(plugin_dir_path( __FILE__ ) . ' the-widgets/proper-rss-widget.php');
    twenty forty
    twenty-one forty-one // Coming soon: require_once(plugin_dir_path( __FILE__ ) . ' the-widgets/proper-contact-widget.php');
  • proper-widgets/trunk/readme.txt

    r602525 r605567  
    two two Contributors: properwp
    three three Donate link:
    four   Tags: widgets, posts widget, links widget
      four Tags: widgets, posts widget, links widget , rss widget, google news widget
    five five Requires at least: 3.0
    six six Tested up to: 3.4.2
    seven   Stable tag: 0.9
      seven Stable tag: 0.9 .1
    eight eight
    nine nine Creates easy-to-use, helpful widgets
     
    nineteen nineteen * Posts Widget: to display a list of posts (better implementation of the core Recent Posts widget)
    twenty twenty * RSS Widget: to display a list of links from any RSS feed (better implementation of the core RSS widget)
      twenty-one * Ability to hide or display each of the widgets above
    twenty-one twenty-two
    twenty-two twenty-three Coming soon:
     
    twenty-six twenty-seven
    twenty-seven twenty-eight Get the absolute latest at the [ https://github.com/joshcanhelp/proper-widgets ](Github repo)
      twenty-nine
      thirty == Screenshots ==
      thirty-one
      thirty-two 1. Settings page
      thirty-three 2. Google News and RSS widget in action
    twenty-eight thirty-four
    twenty-nine thirty-five == Installation ==
     
    forty forty-six == Changelog ==
    forty-one forty-seven
      forty-eight = 0.9.1 =
      forty-nine * Added settings page to turn widgets off and on
      fifty
    forty-two fifty-one = 0.9 =
    forty-three fifty-two * First release
Note: See TracChangeset for help on using the changeset viewer.