Vanilla::callback_sticky_status( int $status )

Translate the topic sticky status type from Vanilla v2.x numerics to WordPress’s strings.


Description Description


Parameters Parameters

$status

(Required) Vanilla v2.x numeric forum type


Top ↑

Return Return

(string) WordPress safe


Top ↑

Source Source

File: includes/admin/converters/Vanilla.php

	public function callback_sticky_status( $status = 0 ) {
		switch ( $status ) {
			case 1 :
				$status = 'sticky';       // Vanilla Sticky 'Announce = 1'
				break;

			case 0  :
			default :
				$status = 'normal';       // Vanilla normal topic 'Announce = 0'
				break;
		}
		return $status;
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.