Zend Framework - Глава 3. Zend_Auth | Participants
|
- Statistics
- Participants
- Translate into Russian
- Translation result
- 3% translated in draft.
If you do not want to register an account, you can sign in with OpenID.
Zend Framework - Глава 3. Zend_Auth | ||
Глава 3. Zend_Auth | ||
Содержание | ||
3.1. Introduction | ||
3.1.1. Adapters | ||
3.1.2. Results | ||
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.2. Database Table Authentication | 3.2 Аутентификация с использованием таблицы базы данных | |
3.2.1. Introduction | ||
3.2.2. Advanced Use: Persisting a DbTable Result Object | ||
3.2.3. Advanced Usage By Example | ||
3.3. Digest Authentication | ||
3.3.1. Introduction | ||
3.3.2. Specifics | ||
3.3.3. Identity | ||
3.4. HTTP Authentication Adapter | ||
3.4.1. Introduction | ||
3.4.2. Design Overview | ||
3.4.3. Configuration Options | ||
3.4.4. Resolvers | ||
3.4.4.1. File Resolver | ||
3.4.5. Basic Usage | ||
3.5. LDAP Authentication | ||
3.5.1. Introduction | ||
3.5.2. Usage | ||
3.5.3. The API | ||
3.5.4. Server Options | ||
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 для аутентификации и включает в себя аутентификационные адаптеры для использования в часто встречающихся сценариях работы. | |
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 | ||
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. |
© Zend Framework.
