ACC SHELL
/**
* File: ep-dm-dialogs.ycp
* Package: yast2-storage
* Summary: Expert Partitioner
* Authors: Arvin Schnell <aschnell@suse.de>
*
* This file must only be included in other Expert Partitioner files ("ep-*.ycp").
*/
{
textdomain "storage";
boolean DlgEditDmVolume(map<string, any> &data)
{
string device = data["device"]:"error";
map<string, any> aliases = $[
"FormatMount" : ``(MiniWorkflowStepFormatMount(data)),
"Password" : ``(MiniWorkflowStepPassword(data))
];
map<string, any> sequence = $[
"FormatMount" : $[ `next : "Password",
`finish : `finish ],
"Password" : $[ `finish : `finish ]
];
// dialog title
string title = sformat(_("Edit DM %1"), device);
symbol widget = MiniWorkflow::Run(title, StorageIcons::dm_icon, aliases, sequence, "FormatMount");
return widget == `finish;
}
}
ACC SHELL 2018