Jump to content

If member id is in array

Featured Replies

Posted

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

{{if in_array( \IPS\Member::loggedIn()->member_id, array( id1, id2, id3 ) )}}

{{endif}}

 

  • Author
2 minutes ago, Ilya Hoilik said:

{{if in_array( \IPS\Member::loggedIn()->member_id, array( id1, id2, id3 ) )}}

{{endif}}

 

Perfect thanks

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.

  • 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.

Recently Browsing 0

  • No registered users viewing this page.