MyBB::callback_sticky_status( int $status )
Translate the topic sticky status type from MyBB v1.6.10 numerics to WordPress’s strings.
Description Description
Parameters Parameters
- $status
-
(Required) MyBB v1.6.10 numeric forum type
Return Return
(string) WordPress safe
Source Source
File: includes/admin/converters/MyBB.php
public function callback_sticky_status( $status = 0 ) { switch ( $status ) { case 1 : $status = 'sticky'; // MyBB Sticky 'topic_sticky = 1' break; case 0 : default : $status = 'normal'; // MyBB Normal Topic 'topic_sticky = 0' break; } return $status; }