Projet

Général

Profil

Paste
Télécharger (486 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / uuid / uuid_services / uuid_services.admin.inc @ e7101f36

1
<?php
2

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