Warning: session_start(): open(/var/lib/php/sessions/sess_60b6oc8d6h8a9nv106f195f3nm, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
!7
cmodule ConfirmAction > DynModule {
S text;
transient Runnable action;
start {
onUserUtterance(s -> { if "yes" yes(); });
}
visual withCenteredButtons(
dm_label text(),
"Yes", rThread yes, "No", rThread reset);
void reset enter {
setField(text := "", action := null);
}
void yes enter {
if (action == null) ret;
print("Running action: " + text);
Runnable r = action;
reset();
callF(r);
}
// API
void showAction(S text, Runnable action) {
setFields(+text, +action);
}
}