Jump to content

Exclude groups - php error


aXenDev

Recommended Posts

Posted

Hello,
Referring to the code @newbie LAC in my previous topic, I'm trying to get the groups out of display.
I try this:

if (isset($allGroups[$sid]) = explode(',', \IPS\Settings::i()->ips1s2kSGIExclude)) unset($allGroups[$sid]);

But I get an error: "Your code caused a parse error and could not be saved.".

At this moment the error causes "\IPS\Settings::i()->ips1s2kSGIExclude".
I added the settings to the plugin and added the code:

$form->add(new \IPS\Helpers\Form\Select('ips1s2kSGIExclude', \IPS\Settings::i()->ips1s2kSGIExclude === '' ? '*' : (\IPS\Settings::i()->ips1s2kSGIExclude === '*' ? '*' : explode(',', \IPS\Settings::i()->ips1s2kSGIExclude)), FALSE, [ 'options' => \IPS\Member\Group::groups(TRUE, FALSE), 'multiple' => TRUE, 'parse' => 'normal' ]));

 

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...