definition.php 1022 B

12345678910111213141516171819
  1. <?php
  2. // Only used for legacy purposes - you configure the current one with its own screen
  3. $sloodleconfig = new SloodleObjectConfig();
  4. $sloodleconfig->primname = 'SLOODLE Set';
  5. $sloodleconfig->module = 'sloodle';
  6. $sloodleconfig->module_choice_message = 'selectcontroller';
  7. $sloodleconfig->module_no_choices_message = 'nocontrollers';
  8. $sloodleconfig->module_filters = array( 'type' => SLOODLE_TYPE_CTRL);
  9. $sloodleconfig->group = ''; // don't show in any groups - you never add one of these to a scene
  10. $sloodleconfig->collections= array('SLOODLE 2.0 Base'); // This should never be rezzed by any rezzer.
  11. $sloodleconfig->aliases = array('SLOODLE 1.1 Set', 'SLOODLE 1.2 Set');
  12. $sloodleconfig->field_sets = array(
  13. 'accesslevel' => array(
  14. 'sloodleobjectaccessleveluse' => $sloodleconfig->access_level_object_use_option(),
  15. 'sloodleobjectaccesslevelctrl' => $sloodleconfig->access_level_object_control_option(),
  16. 'sloodleserveraccesslevel' => $sloodleconfig->access_level_server_option(),
  17. ),
  18. );
  19. ?>