Making WordPress.org


Ignore:
Timestamp:
04/26/2016 09:39:04 PM (8 years ago)
Author:
iandunn
Message:

WordCamp Organizer Nags: Replace Pain Points widget with New Tools.

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  
    3131
    3232        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' )
    3636        );
    3737
     
    153153
    154154        // 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'] ) ) {
    156156            $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'] ),
    158158                $wp_meta_boxes['dashboard']['side']['core']
    159159            );
    160160
    161             unset( $wp_meta_boxes['dashboard']['normal']['core']['removing_pain_points'] );
     161            unset( $wp_meta_boxes['dashboard']['normal']['core']['new_wordcamporg_tools'] );
    162162        }
    163163    }
     
    189189     * Render the content for the Removing WordCamp.org Pain Points dashboard widget
    190190     */
    191     public function render_removing_pain_points() {
     191    public function render_new_wordcamporg_tools() {
    192192        ?>
    193193
    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>
    195197
    196198        <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>
    197201            <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>
    198202            <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>
    201203        </ul>
    202204
Note: See TracChangeset for help on using the changeset viewer.