Skip to:
Content

bbPress.org

Changeset 4222 for trunk/bbpress.php


Ignore:
Timestamp:
09/17/2012 12:03:03 AM (13 years ago)
Author:
johnjamesjacoby
Message:

Capabilities:

  • Remove experimental Bozo functionality. We can use the 'participate' to prevent forum participation without creating topics or replies.
  • Introduce functions to reset, save, and remove user capabilities.
  • Use these functions in both theme-side and admin-side profiles.
  • Add capabilities to bbp-twentyten theme. This will be moved into the stand-alone bbp-twentyten theme soon'ish.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bbpress.php

    r4215 r4222  
    209209        $this->hidden_status_id  = apply_filters( 'bbp_hidden_post_status',  'hidden'  );
    210210        $this->trash_status_id   = apply_filters( 'bbp_trash_post_status',   'trash'   );
    211         $this->bozo_status_id    = apply_filters( 'bbp_bozo_post_status',    'bozo'    );
    212211
    213212        // Other identifiers
     
    710709        );
    711710
    712         // Bozo
    713         register_post_status(
    714             bbp_get_bozo_status_id(),
    715             apply_filters( 'bbp_register_bozo_post_status', array(
    716                 'label'                     => _x( 'Bozo', 'post', 'bbpress' ),
    717                 'label_count'               => _nx_noop( 'Bozo <span class="count">(%s)</span>', 'Bozo <span class="count">(%s)</span>', 'bbpress' ),
    718                 'private'                   => true,
    719                 'exclude_from_search'       => true,
    720                 'show_in_admin_status_list' => true,
    721                 'show_in_admin_all_list'    => false
    722             ) )
    723         );
    724 
    725711        /**
    726712         * Trash fix
     
    829815
    830816    /**
     817     * Register the bbPress capabilities
     818     *
     819     * @since bbPress (r3031)
     820     *
     821     * @uses BBP_Capabilities
     822     */
     823    public function register_capabilities() {
     824        $this->capabilities = new BBP_Capabilities();
     825    }
     826
     827    /**
    831828     * Setup the currently logged-in user
    832829     *
Note: See TracChangeset for help on using the changeset viewer.