phpBB::callback_sticky_status( int $status )

Translate the topic sticky status type from phpBB 3.x numeric’s to WordPress’s strings.

Description

Parameters

$status

(Required) phpBB 3.x numeric forum type

Return

(string) WordPress safe

Source

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

773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
public function callback_sticky_status( $status = 0 ) {
    switch ( $status ) {
        case 3 :
            $status = 'super-sticky'; // phpBB Global Sticky 'topic_type = 3'
            break;
 
        case 2 :
            $status = 'super-sticky'; // phpBB Announcement Sticky 'topic_type = 2'
            break;
 
        case 1 :
            $status = 'sticky';       // phpBB Sticky 'topic_type = 1'
            break;
 
        case 0  :
        default :
            $status = 'normal';       // phpBB normal topic 'topic_type = 0'
            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.