PHPWind::callback_topic_status( int $status = 2 )

Translate the post status from PHPWind v9.x numeric’s to WordPress’s strings.

Description

Parameters

$status

(Optional) PHPWind v9.x numeric topic status

Default value: 2

Return

(string) WordPress safe

Source

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

561
562
563
564
565
566
567
568
569
570
571
572
573
public function callback_topic_status( $status = 2 ) {
    switch ( $status ) {
        case 1 :
            $status = 'closed';
            break;
 
        case 2  :
        default :
            $status = 'publish';
            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.