Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted September 20, 20177 yr If I get a array of member id's how would I create the {{if}} statement for it?, for example {{if \IPS\Member::loggedIn()->member_id in_array ?????????????????????????}} and so on
September 20, 20177 yr {{if in_array( \IPS\Member::loggedIn()->member_id, array( id1, id2, id3 ) )}} {{endif}}
September 20, 20177 yr Author 2 minutes ago, Ilya Hoilik said: {{if in_array( \IPS\Member::loggedIn()->member_id, array( id1, id2, id3 ) )}} {{endif}} Perfect thanks
September 20, 20177 yr Forgot about shortcut. You can use member instead of \IPS\Member::loggedIn(). It's more beautiful. {{if in_array( member.member_id, array( 1, 2, 3 ) )}} {{endif}} All the available shortcuts are described here.
September 20, 20177 yr Author 1 minute ago, Ilya Hoilik said: Forgot about shortcut. You can use member instead of \IPS\Member::loggedIn(). It's more beautiful. {{if in_array( member.member_id, array( 1, 2, 3 ) )}} {{endif}} All the available shortcuts are described here. Yeah I have my own $member $member_id etc shortcuts already, I just typed it that so it was easier to understand, Thanks again
Archived
This topic is now archived and is closed to further replies.