Making WordPress.org


Ignore:
Timestamp:
02/24/2015 08:05:37 PM (10 years ago)
Author:
iandunn
Message:

Multi Event Sponsors: Whitespace and documentation cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/multi-event-sponsors/classes/mes-sponsorship-level.php

    r1302 r1304  
    1515     */
    1616    public function __construct() {
    17         add_action( 'init',                                   array( $this, 'create_post_type' ) );
    18         add_action( 'admin_init',                             array( $this, 'add_meta_boxes' ) );
    19         add_action( 'save_post',                              array( $this, 'save_post' ), 10, 2 );
    20         add_filter( 'the_content',                            array( $this, 'add_header_footer_text' ) );
    21 
    22         // todo readjust whitepsace after this commit
     17        add_action( 'init',        array( $this, 'create_post_type' ) );
     18        add_action( 'admin_init',  array( $this, 'add_meta_boxes' ) );
     19        add_action( 'save_post',   array( $this, 'save_post' ), 10, 2 );
     20        add_filter( 'the_content', array( $this, 'add_header_footer_text' ) );
    2321    }
    2422
     
    140138     *
    141139     * @param string $content
     140     *
    142141     * @return string
    143142     */
Note: See TracChangeset for help on using the changeset viewer.