Remove Class::Data::Inheritable and use CAG 'inherited' style accessors
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / CDBICompat / Relationship.pm
1 package
2     DBIx::Class::CDBICompat::Relationship;
3
4 use strict;
5 use warnings;
6
7 use base 'DBIx::Class';
8
9 use DBIx::Class::_Util 'quote_sub';
10
11 =head1 NAME
12
13 DBIx::Class::CDBICompat::Relationship - Emulate the Class::DBI::Relationship object returned from meta_info()
14
15 =head1 DESCRIPTION
16
17 Emulate the Class::DBI::Relationship object returned from C<meta_info()>.
18
19 =cut
20
21 my %method2key = (
22     name            => 'type',
23     class           => 'self_class',
24     accessor        => 'accessor',
25     foreign_class   => 'class',
26     args            => 'args',
27 );
28
29 quote_sub __PACKAGE__ . "::$_" => "\$_[0]->{$method2key{$_}}"
30   for keys %method2key;
31
32 sub new {
33     my($class, $args) = @_;
34
35     return bless $args, $class;
36 }
37
38 =head1 FURTHER QUESTIONS?
39
40 Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
41
42 =head1 COPYRIGHT AND LICENSE
43
44 This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
45 by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
46 redistribute it and/or modify it under the same terms as the
47 L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.
48
49 =cut
50
51 1;