* @return true if node should be displayed
*/
protected boolean displayForConditions(final SecurityContext securityContext, final RenderContext renderContext) {
// In raw or widget mode, render everything
EditMode editMode = renderContext.getEditMode(securityContext.getUser(false));
if (EditMode.RAW.equals(editMode) || EditMode.WIDGET.equals(editMode)) {
return true;
}
String _showConditions = getProperty(DOMNode.showConditions);