Warning: session_start(): open(/var/lib/php/sessions/sess_g4joedtf8mdu63cg81o38frtob, 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
static LiveValue dm_fieldLiveValue(S fieldName) {
ret dm_fieldLiveValue(dm_current_mandatory(), fieldName());
}
static LiveValue dm_fieldLiveValue(final DynModule module, fS fieldName) {
lock module.lock;
Class type = getFieldType(module, fieldName);
final SimpleLiveValue value = new(type, get(module, fieldName));
module.onChange(r {
value.set(get(module, fieldName));
});
ret value;
}