uuid_services.admin.inc 486 B

1234567891011121314
  1. <?php
  2. /**
  3. * Settings form for UUID Services.
  4. */
  5. function uuid_services_settings() {
  6. $form['uuid_services_support_all_entity_types'] = array(
  7. '#type' => 'checkbox',
  8. '#title' => t('Support all UUID entity types'),
  9. '#description' => t('Check this box to automatically provide Services integration for all entity types with UUID support.'),
  10. '#default_value' => variable_get('uuid_services_support_all_entity_types', FALSE),
  11. );
  12. return system_settings_form($form);
  13. }