Mercurial > pub > Impl
view Lib/DOM/Providers/Security.pm @ 14:65a7bb156fb7
Дом модель и схема
| author | Sergey |
|---|---|
| date | Fri, 04 Sep 2009 16:38:15 +0400 |
| parents | 03e58a454b20 |
| children | 16ada169ca75 |
line wrap: on
line source
use strict; package DOM::Providers::Security; use Security; sub GetProviderInfo { return { Name => 'Security', Host => 'DOM::Site', Objects => { Session => \&GetSession } } } sub GetSession { return Security->CurrentSession; } 1;
