Drupal7::callback_topic_status( int $status = 2 )

Translate the post status from Drupal v7.x numeric’s to WordPress’s strings.

Description

Parameters

$status

(int) (Optional) Drupal v7.x numeric topic status

Default value: 2

Return

(string) WordPress safe

Source

File: bp-forums/admin/converters/Drupal7.php

	public function callback_topic_status( $status = 2 ) {
		switch ( $status ) {
			case 1 :
				$status = 'closed';
				break;

			case 2  :
			default :
				$status = 'publish';
				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.