Invision::callback_sticky_status( int $status )

Translate the topic sticky status 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

493
494
495
496
497
498
499
500
501
502
503
504
505
public function callback_sticky_status( $status = 0 ) {
    switch ( $status ) {
        case 1 :
            $status = 'sticky';       // Invision Pinned Topic 'pinned = 1'
            break;
 
        case 0  :
        default :
            $status = 'normal';       // Invision Normal Topic 'pinned = 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.