uuid_services.admin.inc 612 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @file
  4. * Administration functions for UUID Service module.
  5. */
  6. /**
  7. * Settings form for UUID Services.
  8. *
  9. * @return array
  10. * Configuration form structure.
  11. */
  12. function uuid_services_settings() {
  13. $form['uuid_services_support_all_entity_types'] = array(
  14. '#type' => 'checkbox',
  15. '#title' => t('Support all UUID entity types'),
  16. '#description' => t('Check this box to automatically provide Services integration for all entity types with UUID support.'),
  17. '#default_value' => variable_get('uuid_services_support_all_entity_types', FALSE),
  18. );
  19. return system_settings_form($form);
  20. }