Invision::callback_forum_type( int $status )
Translate the forum type from Invision numeric’s to WordPress’s strings.
Description
Parameters
- $status
-
(Required) Invision numeric forum type
Return
(string) WordPress safe
Source
File: bp-forums/admin/converters/Invision.php
public function callback_forum_type( $status = 0 ) {
if ( $status == -1 ) {
$status = 'category';
} else {
$status = 'forum';
}
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.