Changeset 440619
- Timestamp:
- 09/20/2011 05:31:34 AM (15 years ago)
- Location:
- basecamp-bug-report/trunk
- Files:
-
- 2 edited
-
basecamp-bug-report.php (modified) (4 diffs)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
basecamp-bug-report/trunk/basecamp-bug-report.php
r440618 r440619 4 4 Plugin URI: http://brainstormmedia.com 5 5 Description: Allow clients to submit bug reports from the Admin Bar to a Basecamp todo list. 6 Version: 1. 0.16 Version: 1.1 7 7 Author: Brainstorm Media 8 8 Author URI: http://brainstormmedia.com … … 26 26 class StormBasecampBugReport { 27 27 28 var $version = '1. 0.1';28 var $version = '1.1'; 29 29 30 30 /** … … 113 113 $this->options_page_hookname = add_management_page( __( 'Bug Report' , 'StormBug' ) , __( 'Bug Report' , 'StormBug' ) , 'manage_options' , 'basecamp-bug-report' , array( $this , 'admin_page' ) ); 114 114 115 add_filter ( "plugin_action_links_{$this->plugin_basename}" , array( $this , 'filter_plugin_actions' ) ); 116 115 117 add_action ( "admin_print_scripts-{$this->options_page_hookname}" , array( $this , 'admin_print_scripts' ) ); 116 118 add_action ( "admin_print_styles-{$this->options_page_hookname}" , array( $this , 'admin_print_styles' ) ); … … 141 143 142 144 } 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 } 143 158 144 159 #}end Setup -
basecamp-bug-report/trunk/readme.txt
r440618 r440619 5 5 Requires at least: 3.1 6 6 Tested up to: 3.2.1 7 Stable tag: 1. 0.17 Stable tag: 1.1 8 8 9 9 Allow clients to submit bug reports from the Admin Bar to a Basecamp todo list. … … 13 13 We 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. 14 14 15 This plugin requires [PHP 5 ](https://codex.wordpress.org/Switching_to_PHP5).15 This 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. 16 16 17 17 == Installation == … … 29 29 == Changelog == 30 30 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 33 34 34 35 = 1.0 = … … 51 52 == License == 52 53 53 Copyright 201 0Brainstorm Media - Released under the GNU General Public License54 Copyright 2011 Brainstorm Media - Released under the GNU General Public License 54 55 - [License details](http://www.gnu.org/licenses/gpl.html)
Note: See TracChangeset
for help on using the changeset viewer.