source: sipes/modules_contrib/services/auth/services_oauth/services_oauth.module

stableversion-3.0
Last change on this file was 3959b2a, checked in by planificacion <planificacion@…>, 8 años ago

Se agregaron los modulos para permitir el despliegue de servicios web (SOAP)

  • Propiedad mode establecida a 100644
File size: 528 octetos
Línea 
1<?php
2
3/**
4 * Implementation of hook_services_authentication().
5 */
6function services_oauth_services_authentication_info() {
7  return array(
8    'file'             => 'services_oauth.inc',
9    'title'            => t('OAuth authentication'),
10    'description'      => t('An open protocol to allow secure API authorization'),
11    'security_settings' => '_services_oauth_security_settings',
12    'authenticate_call' => '_services_oauth_authenticate_call',
13    'controller_settings' => '_services_oauth_controller_settings',
14  );
15}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.