Skip to:
Content

bbPress.org


Ignore:
Timestamp:
10/28/2015 04:07:50 AM (10 years ago)
Author:
netweb
Message:

Standardize @since PHPDoc tags style and format

This changeset updates the style and formatting of all of our @since instances for compatibility with phpDocumentor 2 and WP-Parser as we move toward implementing the bbPress developer code reference.

Props thebrandonallen
Fixes #2879

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/list-tables/topic-replies.php

    r5930 r5951  
    2424 * metabox, similar to comments in posts and pages.
    2525 *
    26  * @since bbPress (r5886)
     26 * @since 2.6.0 bbPress (r5886)
    2727 */
    2828class BBP_Topic_Replies_List_Table extends WP_List_Table {
     
    3131     * The main constructor method
    3232     *
    33      * @since bbPress (r5886)
     33     * @since 2.6.0 bbPress (r5886)
    3434     */
    3535    public function __construct( $args = array() ) {
     
    4545     * Setup the list-table's columns
    4646     *
    47      * @since bbPress (r5886)
     47     * @since 2.6.0 bbPress (r5886)
    4848     *
    4949     * @see WP_List_Table::::single_row_columns()
     
    6363     * Allow `bbp_reply_created` to be sortable
    6464     *
    65      * @since bbPress (r5886)
     65     * @since 2.6.0 bbPress (r5886)
    6666     *
    6767     * @return array An associative array containing the `bbp_reply_created` column
     
    7676     * Setup the bulk actions
    7777     *
    78      * @since bbPress (r5886)
     78     * @since 2.6.0 bbPress (r5886)
    7979     *
    8080     * @return array An associative array containing all the bulk actions
     
    9494     * Output the `cb` column for bulk actions (if we implement them)
    9595     *
    96      * @since bbPress (r5886)
     96     * @since 2.6.0 bbPress (r5886)
    9797     */
    9898    public function column_cb( $item = '' ) {
     
    107107     * Output the contents of the `bbp_topic_reply_author` column
    108108     *
    109      * @since bbPress (r5886)
     109     * @since 2.6.0 bbPress (r5886)
    110110     */
    111111    public function column_bbp_topic_reply_author( $item = '' ) {
     
    121121     * Output the contents of the `bbp_reply_created` column
    122122     *
    123      * @since bbPress (r5886)
     123     * @since 2.6.0 bbPress (r5886)
    124124     */
    125125    public function column_bbp_reply_created( $item = '' ) {
     
    133133     * Output the contents of the `bbp_reply_content` column
    134134     *
    135      * @since bbPress (r5886)
     135     * @since 2.6.0 bbPress (r5886)
    136136     */
    137137   public function column_bbp_reply_content( $item = '' ) {
     
    159159     * Handle bulk action requests
    160160     *
    161      * @since bbPress (r5886)
     161     * @since 2.6.0 bbPress (r5886)
    162162     */
    163163    public function process_bulk_action() {
     
    175175     * Prepare the list-table items for display
    176176     *
    177      * @since bbPress (r5886)
     177     * @since 2.6.0 bbPress (r5886)
    178178     *
    179179     * @uses $this->_column_headers
     
    234234     * Message to be displayed when there are no items
    235235     *
    236      * @since bbPress (r5930)
     236     * @since 2.6.0 bbPress (r5930)
    237237     */
    238238    public function no_items() {
     
    246246     * with a nonce and check that we do not need.
    247247     *
    248      * @since bbPress (r5930)
     248     * @since 2.6.0 bbPress (r5930)
    249249     */
    250250    public function display() {
     
    283283     * with a nonce and check that we do not need.
    284284     *
    285      * @since bbPress (r5930)
     285     * @since 2.6.0 bbPress (r5930)
    286286     *
    287287     * @param string $which
Note: See TracChangeset for help on using the changeset viewer.