autoconfig option
This commit is contained in:
parent
1447233225
commit
2b79ff2d11
@ -25,7 +25,7 @@ public class DomainOptionValues extends DefaultSelectableValues {
|
|||||||
list.add(new BooleanListValue("indexes"));
|
list.add(new BooleanListValue("indexes"));
|
||||||
list.add(new BooleanListValue("multiviews"));
|
list.add(new BooleanListValue("multiviews"));
|
||||||
list.add(new BooleanListValue("letsencrypt"));
|
list.add(new BooleanListValue("letsencrypt"));
|
||||||
// list.add(new BooleanListValue("php5"));
|
list.add(new BooleanListValue("autoconfig"));
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -66,7 +66,11 @@ public class PropertyRemote implements IRemote {
|
|||||||
if ("name".equals(fieldName)) {
|
if ("name".equals(fieldName)) {
|
||||||
propertyProperties.put("displaySequence", "1");
|
propertyProperties.put("displaySequence", "1");
|
||||||
}
|
}
|
||||||
|
if ("locked".equals(fieldName)) {
|
||||||
|
propertyProperties.put("displayVisible", "never");
|
||||||
|
} else {
|
||||||
propertyProperties.put("displayVisible", "always");
|
propertyProperties.put("displayVisible", "always");
|
||||||
|
}
|
||||||
propertyProperties.put("minLength", "0");
|
propertyProperties.put("minLength", "0");
|
||||||
propertyProperties.put("maxLength", "999");
|
propertyProperties.put("maxLength", "999");
|
||||||
String regExp = fieldIO.validation();
|
String regExp = fieldIO.validation();
|
||||||
|
Loading…
Reference in New Issue
Block a user