Making WordPress.org


Ignore:
Timestamp:
02/13/2018 08:14:07 PM (8 years ago)
Author:
iandunn
Message:

Multi Event Sponsors: Apply coding standards.

File:
1 edited

Legend:

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

    r1304 r6626  
    1010class MES_Sponsorship_Level {
    1111        const POST_TYPE_SLUG = 'mes-sponsor-level';
    12        
     12
    1313        /**
    1414         * Constructor
     
    1616        public function __construct() {
    1717                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 );
     18                add_action( 'admin_init',  array( $this, 'add_meta_boxes'   ) );
     19                add_action( 'save_post',   array( $this, 'save_post'        ), 10, 2 );
    2020                add_filter( 'the_content', array( $this, 'add_header_footer_text' ) );
    2121        }
Note: See TracChangeset for help on using the changeset viewer.