Author API Initialization
show_extend
Configuration options for the "extend Activity time" functionality.
Values
Attribute path config.activity_edit.player.administration.show_extend
Type object
Properties
-
show boolean
Controls whether the "extend Activity time" option is shown in the administration panel.
You would want to use this to hide the "extend Activity time" option.
Default:
true
var initializationOptions = { "config": { "activity_edit": { "player": { "administration": { "show": true, "show_extend": { "show": false } } } } } };
-
edit boolean
Controls whether the "extend Activity time" option can be changed in the Activity editor.
You would want to use this to prevent authors from changing the "extend Activity time" option. The option will be displayed but cannot be changed.
Default:
true
var initializationOptions = { "config": { "activity_edit": { "player": { "administration": { "show": true, "show_extend": { "show": true, "edit": false } } } } } };