Changeset 3017 for sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-organizer-nags/wordcamp-organizer-nags.php
- Timestamp:
- 04/26/2016 09:39:04 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-organizer-nags/wordcamp-organizer-nags.php
r2125 r3017 31 31 32 32 wp_add_dashboard_widget( 33 ' removing_pain_points',34 ' Removing WordCamp.org Pain Points',35 array( $this, 'render_ removing_pain_points' )33 'new_wordcamporg_tools', 34 'New WordCamp.org Tools', 35 array( $this, 'render_new_wordcamporg_tools' ) 36 36 ); 37 37 … … 153 153 154 154 // Move WordCamp Organizer Survey to the top of the side column 155 if ( isset( $wp_meta_boxes['dashboard']['normal']['core'][' removing_pain_points'] ) ) {155 if ( isset( $wp_meta_boxes['dashboard']['normal']['core']['new_wordcamporg_tools'] ) ) { 156 156 $wp_meta_boxes['dashboard']['side']['core'] = array_merge( 157 array( ' removing_pain_points' => $wp_meta_boxes['dashboard']['normal']['core']['removing_pain_points'] ),157 array( 'new_wordcamporg_tools' => $wp_meta_boxes['dashboard']['normal']['core']['new_wordcamporg_tools'] ), 158 158 $wp_meta_boxes['dashboard']['side']['core'] 159 159 ); 160 160 161 unset( $wp_meta_boxes['dashboard']['normal']['core'][' removing_pain_points'] );161 unset( $wp_meta_boxes['dashboard']['normal']['core']['new_wordcamporg_tools'] ); 162 162 } 163 163 } … … 189 189 * Render the content for the Removing WordCamp.org Pain Points dashboard widget 190 190 */ 191 public function render_ removing_pain_points() {191 public function render_new_wordcamporg_tools() { 192 192 ?> 193 193 194 <p>There are several projects underway to eliminate the worst pain points that WordCamp organizers have reported. Check them out if you'd like to get involved!</p> 194 <p> 195 <?php _e( "Here are some of the tools we've recently launched to help you organize:", 'wordcamporg' ); ?> 196 </p> 195 197 196 198 <ul class="ul-disc"> 199 <li><a href="https://make.wordpress.org/community/2016/04/26/new-tool-for-creating-personalized-wordcamp-badges/">Create personalized attendee badges</a>.</li> 200 <li><a href="https://make.wordpress.org/community/2016/03/01/new-automated-payments-and-invoicing/">Invoice sponsors, pay vendors, and get reimbursed</a>.</li> 197 201 <li><a href="https://make.wordpress.org/community/2015/07/09/site-cloner-v1-is-now-available/">Quickly clone another WordCamp site</a> instead of building yours from scratch.</li> 198 202 <li><a href="https://make.wordpress.org/community/2015/11/24/remote-css-plugin-launched-on-wordcamp-org/">Edit CSS in your local environment</a> and manage it in a GitHub repository.</li> 199 <li><a href="https://make.wordpress.org/community/2015/07/02/results-from-the-wordcamp-org-tools-follow-up-survey/">Build a new theme</a> for WordCamp sites.</li>200 <li><a href="https://make.wordpress.org/community/2015/07/08/better-wordcamp-org-docs/">Improve documentation</a>.</li>201 203 </ul> 202 204
Note: See TracChangeset
for help on using the changeset viewer.