Projet

Général

Profil

Révision 4eeb3b46

Ajouté par Assos Assos il y a presque 8 ans

Weekly update of contrib modules

Voir les différences:

drupal7/sites/all/modules/uuid/uuid_services/uuid_services.module
1 1
<?php
2 2

  
3 3
/**
4
 * Implementation of hook_menu().
4
 * @file
5
 * UUID Services module functions.
6
 */
7

  
8
/**
9
 * Implements hook_menu().
5 10
 */
6 11
function uuid_services_menu() {
7 12
  $items['admin/config/services/uuid-services'] = array(
8 13
    'title' => 'UUID Services',
9
    'description' => 'Configure settings for Module Filter.',
14
    'description' => 'Configure settings for UUID Services.',
10 15
    'access arguments' => array('administer services'),
11 16
    'page callback' => 'drupal_get_form',
12 17
    'page arguments' => array('uuid_services_settings'),
13
    'file' => 'uuid_services.admin.inc'
18
    'file' => 'uuid_services.admin.inc',
14 19
  );
15 20
  return $items;
16 21
}
......
178 183
/**
179 184
 * Access callback.
180 185
 *
181
 * @param $op
186
 * @param string $op
182 187
 *   The operation we are trying to do on the entity. Can only be:
183 188
 *   - "view"
184 189
 *   - "update"
185 190
 *   - "delete"
186 191
 *   See 'uuid_services_services_resources_alter()' for an explanation why
187 192
 *   'create' is missing.
188
 * @param $args
193
 * @param array $args
189 194
 *   The arguments passed to the method. The keys are holding the following:
190 195
 *   0. <entity_type>
191 196
 *   1. <uuid>

Formats disponibles : Unified diff