Kunena2::callback_forum_status( int $status )

Translate the forum status from Kunena v2.x numeric’s to WordPress’s strings.

Description

Parameters

$status

(Required) Kunena v2.x numeric forum status

Return

(string) WordPress safe

Source

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

535
536
537
538
539
540
541
542
543
544
545
546
547
public function callback_forum_status( $status = 0 ) {
    switch ( $status ) {
        case 1 :
            $status = 'closed';
            break;
 
        case 0  :
        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.