source: trunk/LATMOS-Accounts/lib/LATMOS/Accounts/Bases/Sql/Sutype.pm @ 2045

Last change on this file since 2045 was 1551, checked in by nanardon, 8 years ago

Various fixes after i18n changes

  • Property svn:keywords set to Id Rev
File size: 871 bytes
Line 
1package LATMOS::Accounts::Bases::Sql::Sutype;
2
3use 5.010000;
4use strict;
5use warnings;
6
7use base qw(LATMOS::Accounts::Bases::Sql::objects);
8use LATMOS::Accounts::I18N;
9
10our $VERSION = (q$Rev$ =~ /^Rev: (\d+) /)[0];
11
12=head1 NAME
13
14LATMOS::Accounts::Bases::Sql::Sutype - Structural type
15
16=head1 DESCRIPTION
17
18Type for groups.
19
20=cut
21
22sub _object_table { 'su_type' }
23
24sub _key_field { 'name' }
25
26sub _has_extended_attributes { 0 }
27
281;
29
30__END__
31
32=head1 SEE ALSO
33
34L<LATMOS::Accounts::Bases::Sql>
35
36=head1 AUTHOR
37
38Olivier Thauvin, E<lt>olivier.thauvin@latmos.ipsl.frE<gt>
39
40=head1 COPYRIGHT AND LICENSE
41
42Copyright (C) 2008, 2009, 2010, 2011, 2012 CNRS SA/CETP/LATMOS
43
44This library is free software; you can redistribute it and/or modify
45it under the same terms as Perl itself, either Perl version 5.10.0 or,
46at your option, any later version of Perl 5 you may have available.
47
48
49=cut
Note: See TracBrowser for help on using the repository browser.