| 12345678910111213141516171819 |
- <?php
- // Only used for legacy purposes - you configure the current one with its own screen
- $sloodleconfig = new SloodleObjectConfig();
- $sloodleconfig->primname = 'SLOODLE Set';
- $sloodleconfig->module = 'sloodle';
- $sloodleconfig->module_choice_message = 'selectcontroller';
- $sloodleconfig->module_no_choices_message = 'nocontrollers';
- $sloodleconfig->module_filters = array( 'type' => SLOODLE_TYPE_CTRL);
- $sloodleconfig->group = ''; // don't show in any groups - you never add one of these to a scene
- $sloodleconfig->collections= array('SLOODLE 2.0 Base'); // This should never be rezzed by any rezzer.
- $sloodleconfig->aliases = array('SLOODLE 1.1 Set', 'SLOODLE 1.2 Set');
- $sloodleconfig->field_sets = array(
- 'accesslevel' => array(
- 'sloodleobjectaccessleveluse' => $sloodleconfig->access_level_object_use_option(),
- 'sloodleobjectaccesslevelctrl' => $sloodleconfig->access_level_object_control_option(),
- 'sloodleserveraccesslevel' => $sloodleconfig->access_level_server_option(),
- ),
- );
- ?>
|