Gantry::Control::Model::auth_groups_cdbi - Gantry::Control::Model::auth_groups_cdbi documentation


Gantry documentation Contained in the Gantry distribution.

Index


Code Index:

NAME

Top

Gantry::Control::Model::auth_groups- Model Component for the auth_groups table

SYNOPSIS

Top

    Very simple to use

DESCRIPTION

Top

Very nice component.

SEE ALSO

Top

Class::DBI(3), Class::DBI::Sweet(3), Gantry(3), Gantry::Control::Model(3)

AUTHOR

Top

Tim Keefer <tkeefer@gmail.com>

LICENSE

Top

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__