Rose::DBx::Garden::Catalyst::Object - base RDBO class


Rose-DBx-Garden-Catalyst documentation Contained in the Rose-DBx-Garden-Catalyst distribution.

Index


Code Index:

NAME

Top

Rose::DBx::Garden::Catalyst::Object - base RDBO class

DESCRIPTION

Top

Rose::DBx::Garden::Catalyst::Object is a subclass of Rose::DB::Object for using with YUI, RHTMLO and CatalystX::CRUD.

RDGC::Object inherits from both RDBO and RDBO::Helpers, plus adding some convenience methods of its own.

METHODS

Top

See Rose::DBx::Object::MoreHelpers.

schema_class_prefix

Returns garden_prefix() value. schema_class_prefix() is used by Rose::HTMLx::Form::Related while garden_prefix() is what Rose::DBx::Garden sets.

AUTHOR

Top

Peter Karman, <karman at cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-rose-dbx-garden-catalyst at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Rose-DBx-Garden-Catalyst. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Rose::DBx::Garden::Catalyst

You can also look for information at:

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Rose-DBx-Garden-Catalyst

* CPAN Ratings

http://cpanratings.perl.org/d/Rose-DBx-Garden-Catalyst

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Rose-DBx-Garden-Catalyst

* Search CPAN

http://search.cpan.org/dist/Rose-DBx-Garden-Catalyst

ACKNOWLEDGEMENTS

Top

The Minnesota Supercomputing Institute http://www.msi.umn.edu/ sponsored the development of this software.

COPYRIGHT & LICENSE

Top


Rose-DBx-Garden-Catalyst documentation Contained in the Rose-DBx-Garden-Catalyst distribution.
package Rose::DBx::Garden::Catalyst::Object;
use strict;
use warnings;
use Carp;
use Data::Dump qw( dump );
use base qw( Rose::DB::Object );
use base qw( Rose::DB::Object::Helpers );
use base qw( Rose::DBx::Object::MoreHelpers );
use MRO::Compat;
use mro 'c3';

our $VERSION = '0.15';

sub schema_class_prefix {
    shift->garden_prefix;
}

1;

__END__