Plugin Directory

Changeset 440619


Ignore:
Timestamp:
09/20/2011 05:31:34 AM (15 years ago)
Author:
brainstormmedia
Message:

Merge branch 'r/1.1'

Location:
basecamp-bug-report/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • basecamp-bug-report/trunk/basecamp-bug-report.php

    r440618 r440619  
    44Plugin URI: http://brainstormmedia.com
    55Description: Allow clients to submit bug reports from the Admin Bar to a Basecamp todo list.
    6 Version: 1.0.1
     6Version: 1.1
    77Author: Brainstorm Media
    88Author URI: http://brainstormmedia.com
     
    2626class StormBasecampBugReport {
    2727   
    28     var $version = '1.0.1';
     28    var $version = '1.1';
    2929
    3030    /**
     
    113113            $this->options_page_hookname = add_management_page( __( 'Bug Report' , 'StormBug' ) , __( 'Bug Report' , 'StormBug' ) , 'manage_options' , 'basecamp-bug-report' , array( $this , 'admin_page' ) );
    114114
     115            add_filter ( "plugin_action_links_{$this->plugin_basename}" , array( $this , 'filter_plugin_actions' ) );
     116
    115117            add_action ( "admin_print_scripts-{$this->options_page_hookname}" , array( $this , 'admin_print_scripts' ) );
    116118            add_action ( "admin_print_styles-{$this->options_page_hookname}" , array( $this , 'admin_print_styles' ) );
     
    141143
    142144    }       
     145
     146    /**
     147     * Add a settings link to the plugin actions
     148     *
     149     * @param array $links Array of the plugin action links
     150     * @return array
     151     * @since 0.1
     152     */
     153    function filter_plugin_actions ( $links ) {
     154        $settings_link = '<a href="tools.php?page=basecamp-bug-report">' . __( 'Settings' , 'StormBug' ) . '</a>';
     155        array_unshift ( $links, $settings_link );
     156        return $links;
     157    }
    143158       
    144159    #}end Setup
  • basecamp-bug-report/trunk/readme.txt

    r440618 r440619  
    55Requires at least: 3.1
    66Tested up to: 3.2.1
    7 Stable tag: 1.0.1
     7Stable tag: 1.1
    88
    99Allow clients to submit bug reports from the Admin Bar to a Basecamp todo list.
     
    1313We use this plugin at [Brainstorm Media](http://brainstormmedia.com) to simplify and standardize the bug submission process when clients are reviewing sites. Browser information and the referring page URL is automatically submitted with each bug report.
    1414
    15 This plugin requires [PHP 5](https://codex.wordpress.org/Switching_to_PHP5).
     15This plugin requires [PHP 5.2](https://codex.wordpress.org/Switching_to_PHP5). As of WordPress 3.2, the minimum supported version is PHP 5.2.
    1616
    1717== Installation ==
     
    2929== Changelog ==
    3030
    31 = 1.0.1 =
    32 * Detect and warn if WordPress is not running on PHP 5.2 or greater
     31= 1.1 =
     32* Added error messages to help when settings are incorrect
     33* Improved portability by replacing Zend_Http_Client with wp_remote_get
    3334
    3435= 1.0 =
     
    5152== License ==
    5253
    53 Copyright 2010 Brainstorm Media - Released under the  GNU General Public License
     54Copyright 2011 Brainstorm Media - Released under the  GNU General Public License
    5455 - [License details](http://www.gnu.org/licenses/gpl.html)
Note: See TracChangeset for help on using the changeset viewer.