Vanilla::callback_forum_parent( int $parent )

Clean Root Parent ID -1 to 0


Description Description


Parameters Parameters

$parent

(Required) Vanilla v2.x Parent ID


Top ↑

Return Return

(int)


Top ↑

Source Source

File: includes/admin/converters/Vanilla.php

	public function callback_forum_parent( $parent = 0 ) {
		if ( $parent == -1 ) {
			return 0;
		} else {
			return $parent;
		}
	}

Top ↑

User Contributed Notes User Contributed Notes

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