Warning: session_start(): open(/var/lib/php/sessions/sess_b1coii8ahuedp81oc1toiaaqf7, 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 NewSnippetAsSF > DynPrintLogAndEnabled {
start {
dm_onSnippetCreated(voidfunc(S snippetID) {
print("New snippet! " + snippetID);
if (getSnippetType(snippetID) == snippetType_JavaXInclude()) {
S text = loadSnippet(snippetID);
S sfName = first(findFunctionDefinitions(text));
if (sfName != null)
showPackedFrameInBottomRightCorner(
centerAndSouthWithMargins(jlabel("Add standard function: "
+ sfName + "?"),
hgridWithSpacing(
jThreadedButton("OK", r {
disposeWindow(heldInstance(JButton));
addStandardFunctionWithAnimation(snippetID);
}),
jCancelButton("No")
)
));
}
});
}
}