PHPFox3::callback_forum_type( int $status )

Translate the forum type from PHPFox v3.5.x numeric’s to WordPress’s strings.

Description

Parameters

$status

(Required) PHPFox v3.5.x numeric forum type

Return

(string) WordPress safe

Source

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

557
558
559
560
561
562
563
564
565
566
567
568
569
public function callback_forum_type( $status = 0 ) {
    switch ( $status ) {
        case 1 :
            $status = 'category';
            break;
 
        case 0  :
        default :
            $status = 'forum';
            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.