vBulletin3::callback_topic_status( int $status = 1 )

Translate the post status from vBulletin v3.x numeric’s to WordPress’s strings.

Description

Parameters

$status

(Optional) vBulletin v3.x numeric topic status

Default value: 1

Return

(string) WordPress safe

Source

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

665
666
667
668
669
670
671
672
673
674
675
676
677
public function callback_topic_status( $status = 1 ) {
    switch ( $status ) {
        case 0 :
            $status = 'closed';
            break;
 
        case 1  :
        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.