bbp_get_form_forum_visibility_dropdown( $args = '' )

Return the forum visibility dropdown

Description

Parameters

$forum_id

(Required) The forum id to use

Return

(string) HTML select list for selecting forum visibility

Source

File: bp-forums/forums/template.php

2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
function bbp_get_form_forum_visibility_dropdown( $args = '' ) {
 
    // Backpat for handling passing of a forum ID
    if ( is_int( $args ) ) {
        $forum_id = (int) $args;
        $args     = array();
    } else {
        $forum_id = 0;
    }
 
    // Parse arguments against default values
    $r = bbp_parse_args( $args, array(
        'select_id'    => 'bbp_forum_visibility',
        'tab'          => bbp_get_tab_index(),
        'forum_id'     => $forum_id,
        'selected'     => false
    ), 'forum_type_select' );
 
    // No specific selected value passed
    if ( empty( $r['selected'] ) ) {
 
        // Post value is passed
        if ( bbp_is_post_request() && isset( $_POST[ $r['select_id'] ] ) ) {
            $r['selected'] = $_POST[ $r['select_id'] ];
 
        // No Post value was passed
        } else {
 
            // Edit topic
            if ( bbp_is_forum_edit() ) {
                $r['forum_id'] = bbp_get_forum_id( $r['forum_id'] );
                $r['selected'] = bbp_get_forum_visibility( $r['forum_id'] );
 
            // New topic
            } else {
                $r['selected'] = bbp_get_public_status_id();
            }
        }
    }
 
    // Used variables
    $tab = ! empty( $r['tab'] ) ? ' tabindex="' . (int) $r['tab'] . '"' : '';
 
    // Start an output buffer, we'll finish it after the select loop
    ob_start(); ?>
 
    <select name="<?php echo esc_attr( $r['select_id'] ) ?>" id="<?php echo esc_attr( $r['select_id'] ) ?>_select"<?php echo $tab; ?>>
 
        <?php foreach ( bbp_get_forum_visibilities() as $key => $label ) : ?>
 
            <option value="<?php echo esc_attr( $key ); ?>"<?php selected( $key, $r['selected'] ); ?>><?php echo esc_html( $label ); ?></option>
 
        <?php endforeach; ?>
 
    </select>
 
    <?php
 
    // Return the results
    return apply_filters( 'bbp_get_form_forum_type_dropdown', ob_get_clean(), $r );
}

Changelog

Changelog
Version Description
bbPress (r3563) Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.