Zend Framework - Глава 3. Zend_Auth

Zend Framework, “Zend Framework - Глава 3. Zend_Auth”, public translation into Russian from English More about this translation.

Translate into another language.

Participants

Lloyd36 points
lightalloy22 points
silent10 points
And others...
Join Translated.by to translate! If you already have a Translated.by account, please sign in.
If you do not want to register an account, you can sign in with OpenID.
Pages: ← previous Ctrl next next untranslated
1 2 3 4 5 6

Zend Framework - Глава 3. Zend_Auth

Zend Framework - Глава 3. Zend_Auth

History of edits (Latest: lightalloy 3 years, 9 months ago) §

Глава 3. Zend_Auth

Глава 3. Zend_Auth

History of edits (Latest: lightalloy 3 years, 9 months ago) §

Содержание

Содержание

History of edits (Latest: lightalloy 3 years, 9 months ago) §

3.1. Introduction

3.1. Вступление

History of edits (Latest: silent 3 years, 9 months ago) §

3.1.1. Adapters

3.1.1. Адаптеры

History of edits (Latest: silent 3 years, 9 months ago) §

3.1.2. Results

3.1.2. Результаты

History of edits (Latest: silent 3 years, 9 months ago) §

3.1.3. Identity Persistence

3.1.3.1. Default Persistence in the PHP Session

3.1.3.2. Implementing Customized Storage

3.1.4. Using Zend_Auth

3.1.4 Использование Zend_Auth

History of edits (Latest: Lloyd 3 years, 9 months ago) §

3.2. Database Table Authentication

3.2 Аутентификация с использованием таблицы базы данных

History of edits (Latest: Lloyd 3 years, 9 months ago) §

3.2.1. Introduction

3.2.1 Вступление

History of edits (Latest: lightalloy 3 years, 9 months ago) §

3.2.2. Advanced Use: Persisting a DbTable Result Object

3.2.3. Advanced Usage By Example

3.2.3. Продвинутое использование. Пример.

History of edits (Latest: lightalloy 3 years, 9 months ago) §

3.3. Digest Authentication

3.3.1. Introduction

3.3.1 Вступление

History of edits (Latest: lightalloy 3 years, 9 months ago) §

3.3.2. Specifics

3.3.2. Особенности

History of edits (Latest: lightalloy 3 years, 9 months ago) §

3.3.3. Identity

3.4. HTTP Authentication Adapter

3.4.1. Introduction

3.4.1 Вступление

History of edits (Latest: babysas 3 years, 9 months ago) §

3.4.2. Design Overview

3.4.3. Configuration Options

Опции конфигурации

History of edits (Latest: babysas 3 years, 9 months ago) §

3.4.4. Resolvers

3.4.4.1. File Resolver

3.4.5. Basic Usage

3.5. LDAP Authentication

3.5 LDAP-аутентификация

History of edits (Latest: Lloyd 3 years, 9 months ago) §

3.5.1. Introduction

3.5.1 Введение

History of edits (Latest: Lloyd 3 years, 9 months ago) §

3.5.2. Usage

3.5.3. The API

3.5.3. API

History of edits (Latest: andrey 3 years, 8 months ago) §

3.5.4. Server Options

3.5.4. Опции сервера

History of edits (Latest: andrey 3 years, 8 months ago) §

3.5.5. Collecting Debugging Messages

3.5.6. Common Options for Specific Servers

3.5.6.1. Options for Active Directory

3.5.6.2. Options for OpenLDAP

3.6. Open ID Authentication

3.6.1. Introduction

3.6.2. Specifics

3.1. Introduction

Zend_Auth provides an API for authentication and includes concrete authentication adapters for common use case scenarios.

Zend_Auth предоставляет API для аутентификации и включает в себя аутентификационные адаптеры для использования в часто встречающихся сценариях работы.

History of edits (Latest: lightalloy 3 years, 9 months ago) §

Zend_Auth is concerned only with authentication and not with authorization. Authentication is loosely defined as determining whether an entity actually is what it purports to be (i.e., identification), based on some set of credentials. Authorization, the process of deciding whether to allow an entity access to, or to perform operations upon, other entities is outside the scope of Zend_Auth. For more information about authorization and access control with the Zend Framework, please see Zend_Acl. Замечание

The Zend_Auth class implements the Singleton pattern - only one instance of the class is available - through its static getInstance() method. This means that using the new operator and the clone keyword will not work with the Zend_Auth class; use Zend_Auth::getInstance() instead.

3.1.1. Adapters

3.1.1 Адаптеры

History of edits (Latest: Lloyd 3 years, 9 months ago) §

A Zend_Auth adapter is used to authenticate against a particular type of authentication service, such as LDAP, RDBMS, or file-based storage. Different adapters are likely to have vastly different options and behaviors, but some basic things are common among authentication adapters. For example, accepting authentication credentials (including a purported identity), performing queries against the authentication service, and returning results are common to Zend_Auth adapters.

Pages: ← previous Ctrl next next untranslated
1 2 3 4 5 6

© Zend Framework.