AEF::callback_forum_status( int $status = 1 )

Translate the forum status from AEF v1.0.9 numeric’s to WordPress’s strings.

Description

Parameters

$status

(Optional) AEF v1.0.9 numeric forum status

Default value: 1

Return

(string) WordPress safe

Source

File: bp-forums/admin/converters/AEF.php

616
617
618
619
620
621
622
623
624
625
626
627
628
public function callback_forum_status( $status = 1 ) {
    switch ( $status ) {
        case 0 :
            $status = 'closed';
            break;
 
        case 1 :
        default :
            $status = 'open';
            break;
    }
    return $status;
}

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.