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