phpBB::callback_forum_type( int $status = 1 )
Translate the forum type from phpBB v3.x numeric’s to WordPress’s strings.
Description
Parameters
- $status
-
(Optional) phpBB v3.x numeric forum type
Default value: 1
Return
(string) WordPress safe
Source
File: bp-forums/admin/converters/phpBB.php
public function callback_forum_type( $status = 1 ) {
switch ( $status ) {
case 0 :
$status = 'category';
break;
case 1 :
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.