Plugin Directory

Changeset 453003


Ignore:
Timestamp:
10/19/2011 03:48:15 PM (14 years ago)
Author:
sstukov
Message:

updated version to 1.0.2 added support for wordpress from 2.8

Location:
userecho
Files:
2 edited
8 copied

Legend:

Unmodified
Added
Removed
  • userecho/tags/1.0.2/readme.txt

    r452841 r453003  
    33Donate link: http://userecho.com/
    44Tags: feedback, users community, widget, ideas
    5 Requires at least: 3.2.1
     5Requires at least: 2.8
    66Tested up to: 3.2.1
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88
    99Integrate UserEcho - customer feedback and helpdesk system into your blog. Using widget or link. Support SSO.
     
    1919In addition to being able to leave feedback, customers can also vote on the suggestions left by other users. As a business owner, you can then go in and quickly see which ideas have received the most votes as a way to decide which new features to implement first. For businesses that want a better way to monitor their online communities and solicit feedback from interested customers, UserEcho offers an ever-expanding list of features that can be used to connect businesses to their clients online.
    2020
    21 [Plugin support community](http://feedback.userecho.com/topic/30463-userecho-plugin-for-wordpress/)
     21[Plugin support community](http://feedback.userecho.com/list/1-general/?category=1570)
    2222
    2323== Installation ==
     
    3333= Where i can request suggestions additional for additional features? =
    3434
    35 Feel free to ask your suggestions on our [support community](http://feedback.userecho.com/topic/30463-userecho-plugin-for-wordpress/).
     35Feel free to ask your suggestions on our [support community](http://feedback.userecho.com/list/1-general/?category=1570).
    3636
    3737== Screenshots ==
     
    4646= 1.0 =
    4747* Initial release
     48= 1.0.1 =
     49* Readme files updated to be more informative
     50= 1.0.2 =
     51* Added support for wordpress from 2.8 and upper
  • userecho/tags/1.0.2/userecho.php

    r452849 r453003  
    22/*
    33Plugin Name: UserEcho - collect feedback for your blog
    4 Version: 1.0.1
     4Version: 1.0.2
    55Plugin URI: http://userecho.com
    66Author: Jonathan Champ, Sergey Stukov
     
    426426
    427427class UserEcho_SSO_Widget extends WP_Widget {
    428     public function __construct() {
     428    //public function __construct() {
     429    public function UserEcho_SSO_Widget() {
    429430        $widget_ops = array( 'classname' => 'userecho_sso_widget', 'description' => __( 'Adds a customizable link to UserEcho community with SSO support', 'UserEcho' ) );
    430431        parent::WP_Widget( 'userecho_sso_widget', __( 'UserEcho link', 'UserEcho' ), $widget_ops );
    431432    }
     433
     434    //Because widget_name::__construct() calls WP_Widget::WP_Widget(), which in turn calls widget_name::__construct() etc.
     435
     436    //A simple solution would be to make widget_name::__construct() call WP_Widget::__construct() directly.
    432437
    433438    public function form( $instance ) {
  • userecho/trunk/readme.txt

    r452841 r453003  
    33Donate link: http://userecho.com/
    44Tags: feedback, users community, widget, ideas
    5 Requires at least: 3.2.1
     5Requires at least: 2.8
    66Tested up to: 3.2.1
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88
    99Integrate UserEcho - customer feedback and helpdesk system into your blog. Using widget or link. Support SSO.
     
    1919In addition to being able to leave feedback, customers can also vote on the suggestions left by other users. As a business owner, you can then go in and quickly see which ideas have received the most votes as a way to decide which new features to implement first. For businesses that want a better way to monitor their online communities and solicit feedback from interested customers, UserEcho offers an ever-expanding list of features that can be used to connect businesses to their clients online.
    2020
    21 [Plugin support community](http://feedback.userecho.com/topic/30463-userecho-plugin-for-wordpress/)
     21[Plugin support community](http://feedback.userecho.com/list/1-general/?category=1570)
    2222
    2323== Installation ==
     
    3333= Where i can request suggestions additional for additional features? =
    3434
    35 Feel free to ask your suggestions on our [support community](http://feedback.userecho.com/topic/30463-userecho-plugin-for-wordpress/).
     35Feel free to ask your suggestions on our [support community](http://feedback.userecho.com/list/1-general/?category=1570).
    3636
    3737== Screenshots ==
     
    4646= 1.0 =
    4747* Initial release
     48= 1.0.1 =
     49* Readme files updated to be more informative
     50= 1.0.2 =
     51* Added support for wordpress from 2.8 and upper
  • userecho/trunk/userecho.php

    r452849 r453003  
    22/*
    33Plugin Name: UserEcho - collect feedback for your blog
    4 Version: 1.0.1
     4Version: 1.0.2
    55Plugin URI: http://userecho.com
    66Author: Jonathan Champ, Sergey Stukov
     
    426426
    427427class UserEcho_SSO_Widget extends WP_Widget {
    428     public function __construct() {
     428    //public function __construct() {
     429    public function UserEcho_SSO_Widget() {
    429430        $widget_ops = array( 'classname' => 'userecho_sso_widget', 'description' => __( 'Adds a customizable link to UserEcho community with SSO support', 'UserEcho' ) );
    430431        parent::WP_Widget( 'userecho_sso_widget', __( 'UserEcho link', 'UserEcho' ), $widget_ops );
    431432    }
     433
     434    //Because widget_name::__construct() calls WP_Widget::WP_Widget(), which in turn calls widget_name::__construct() etc.
     435
     436    //A simple solution would be to make widget_name::__construct() call WP_Widget::__construct() directly.
    432437
    433438    public function form( $instance ) {
Note: See TracChangeset for help on using the changeset viewer.