. **/ namespace Zabbix\Widgets\Fields; class CWidgetFieldMultiSelectService extends CWidgetFieldMultiSelect { public const DEFAULT_VIEW = \CWidgetFieldMultiSelectServiceView::class; public function __construct(string $name, ?string $label = null) { parent::__construct($name, $label); $this->inaccessible_caption = _('Inaccessible service'); $this->setSaveType(ZBX_WIDGET_FIELD_TYPE_SERVICE); } }