phpBB::callback_sticky_status( int $status )
Translate the topic sticky status type from phpBB 3.x numerics to WordPress’s strings.
Description Description
Parameters Parameters
- $status
-
(Required) phpBB 3.x numeric forum type
Return Return
(string) WordPress safe
Source Source
File: includes/admin/converters/phpBB.php
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; }