Phorum::callback_topic_status( int $status )

Translate the post status from Phorum v5.2.19 numeric’s to WordPress’s strings.

Description

Parameters

$status

(Required) Phorum v5.2.19 numeric topic status

Return

(string) WordPress safe

Source

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

520
521
522
523
524
525
526
527
528
529
530
531
532
public function callback_topic_status( $status = 0 ) {
    switch ( $status ) {
        case 1 :
            $status = 'closed';
            break;
 
        case 0  :
        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.