getAllFieldsForModuleFront(); $fields = []; foreach ($allFields as $field) { $fields[$field->id] = acym_translation($field->name); } if ('WordPress' == 'Joomla' && $this->value == '1') { $formId = $this->form->getData()->get('id'); if (!empty($formId)) { $this->value = ''; } } if (is_string($this->value)) { $this->value = explode(',', $this->value); } if (in_array('None', $this->value)) { $this->value = []; } if (in_array('All', $this->value)) { $this->value = array_keys($fields); } return acym_selectMultiple($fields, $this->name, $this->value, ['id' => $this->name]); } }