Projet

Général

Profil

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

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

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