Skip to:
Content

bbPress.org

Changeset 3917


Ignore:
Timestamp:
05/22/2012 09:35:31 AM (13 years ago)
Author:
johnjamesjacoby
Message:

Main Class:

  • Mark main bbPress class as final, and some methods as static.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbpress.php

    r3911 r3917  
    3232 * @since bbPress (r2464)
    3333 */
    34 class bbPress {
     34final class bbPress {
    3535
    3636    /**
     
    627627     *                        sent to register_post_type()
    628628     */
    629     public function register_post_types() {
     629    public static function register_post_types() {
    630630
    631631        // Define local variable(s)
     
    816816     *                           modify $wp_post_statuses accordingly
    817817     */
    818     public function register_post_statuses() {
     818    public static function register_post_statuses() {
    819819        global $wp_post_statuses;
    820820
     
    889889     * @uses register_taxonomy() To register the taxonomy
    890890     */
    891     public function register_taxonomies() {
     891    public static function register_taxonomies() {
    892892
    893893        // Define local variable(s)
     
    938938     * @uses bbp_register_view() To register the views
    939939     */
    940     public function register_views() {
     940    public static function register_views() {
    941941
    942942        // Topics with no replies
     
    976976     * @uses add_rewrite_tag() To add the rewrite tags
    977977     */
    978     public function add_rewrite_tags() {
     978    public static function add_rewrite_tags() {
    979979        add_rewrite_tag( '%%' . bbp_get_user_rewrite_id() . '%%', '([^/]+)'   ); // User Profile tag
    980980        add_rewrite_tag( '%%' . bbp_get_view_rewrite_id() . '%%', '([^/]+)'   ); // View Page tag
     
    993993     *                                $wp_rewrite->rules
    994994     */
    995     public function generate_rewrite_rules( $wp_rewrite ) {
     995    public static function generate_rewrite_rules( $wp_rewrite ) {
    996996
    997997        // Slugs
Note: See TracChangeset for help on using the changeset viewer.