SyTry
Well-known member
Hello,
In XF1.5 I made a page to display the staff. I use display_style_priority to display member in ASC/DESC :
How can I use it in XF2 ?
Regards, SyTry
In XF1.5 I made a page to display the staff. I use display_style_priority to display member in ASC/DESC :
Code:
public function getStaffDetails()
{
return $this->_getDb()->fetchAll("
SELECT *
FROM `xf_user`
INNER JOIN `xf_user_group` ON `xf_user_group`.`user_group_id` = `xf_user`.`display_style_group_id`
WHERE `is_staff` = '1'
ORDER BY `display_style_priority` DESC
");
}
How can I use it in XF2 ?
Regards, SyTry