LPH
Well-known member
I'm able to pull the prefix_id for a thread but stuck on how to display the prefix phrase. A var_dump isn't giving any clues.
The var_dump doesn't show a phrase or title.
PHP:
/** @var XenForo_Model_ThreadPrefix $threadPrefixes */
$threadPrefixes = XenForo_Model::create( 'XenForo_Model_ThreadPrefix' );
$thread_prefix = $threadPrefixes->getPrefixById($prefix_id);
The var_dump doesn't show a phrase or title.
Code:
array (size=6)
'prefix_id' => int 1
'prefix_group_id' => int 0
'display_order' => int 1
'materialized_order' => int 1
'css_class' => string 'prefix prefixRed' (length=16)
'allowed_user_group_ids' => string '-1' (length=2)
Last edited: