| Gantry documentation | Contained in the Gantry distribution. |
Gantry::Control::Model::auth_groups- Model Component for the auth_groups table
Very simple to use
Very nice component.
Class::DBI(3), Class::DBI::Sweet(3), Gantry(3), Gantry::Control::Model(3)
Tim Keefer <tkeefer@gmail.com>
Copyright (c) 2005-6, Tim Keefer.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.
| Gantry documentation | Contained in the Gantry distribution. |
package Gantry::Control::Model::auth_groups_cdbi; use strict; use base 'Gantry::Utils::AuthCDBI', 'Exporter'; our $AUTH_GROUPS = 'Gantry::Control::Model::auth_groups_cdbi'; our @EXPORT_OK = ( '$AUTH_GROUPS' ); __PACKAGE__->table('auth_groups'); __PACKAGE__->sequence('auth_groups_seq'); __PACKAGE__->columns( Primary => 'id' ); __PACKAGE__->columns( All => qw/id ident name description/ ); __PACKAGE__->columns( Essential => qw/id ident name description/ ); 1; __END__