annotate Lib/DOM/Providers/Security.pm @ 44:32d2350fccf9
ORM
*Minor fixes
*Working tarnsform to sql
*Fixes to the sql traits
author |
Sergey |
date |
Mon, 11 Jan 2010 01:42:00 +0300 |
parents |
03e58a454b20 |
children |
16ada169ca75 |
rev |
line source |
0
|
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; |