|
# frozen_string_literal: true
|
|
|
|
Plugin.create(:sample_settings) do
|
|
multiselect('複数セレクト', :sample_settings_multiselect) do
|
|
option(:opt1, _('オプション1')) do
|
|
select('複数セレクト内オプション', :opt1_select, hash)
|
|
end
|
|
option(:opt2, 'オプション2')
|
|
option(:opt3, 'オプション3')
|
|
end
|
|
end
|