annotate Lib/DOM/Providers/Security.pm @ 99:6dd659f6f66c
Minor changes, DOM schema is in development (in the aspect of a forms)
author |
wizard |
date |
Wed, 05 May 2010 17:33:55 +0400 |
parents |
16ada169ca75 |
children |
|
rev |
line source |
49
|
1 use strict;
|
|
2
|
|
3 package DOM::Providers::Security;
|
|
4 use Security;
|
|
5
|
|
6 sub GetProviderInfo {
|
|
7 return {
|
|
8 Name => 'Security',
|
|
9 Host => 'DOM::Site',
|
|
10 Objects => {
|
|
11 Session => \&GetSession
|
|
12 }
|
|
13 }
|
|
14 }
|
|
15
|
|
16 sub GetSession {
|
|
17 return Security->CurrentSession;
|
|
18 }
|
|
19 1;
|