Mercurial > pub > Impl
view Lib/DOM/Providers/Security.pm @ 62:c64bd1bf727d
Web application
Page query handler
author | wizard |
---|---|
date | Fri, 12 Mar 2010 16:23:46 +0300 |
parents | 16ada169ca75 |
children |
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;