You are here

function deploy_get_auth_type in Deploy - Content Staging 6

Get a specific authentication type.

Parameters

$name: The name of the type to get.

Return value

The authentication type definition.

2 calls to deploy_get_auth_type()
deploy_auth_invoke in ./deploy.module
Invokes an authentication callback.
deploy_server_overview in ./deploy.servers.admin.inc
Display a list of all deployment servers.

File

./deploy.module, line 1024
Deployment API which enables modules to deploy items between servers.

Code

function deploy_get_auth_type($name) {
  $types = deploy_get_auth_types();
  return $types[$name];
}