X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FActionContainer.pm;h=63b8fc9812e561efb443188b461ed17683a675ba;hb=25f55123b7c0b520eb166890bf47f1f3217200af;hp=6b3f282472a7c2ba1d4b6054fda0e4247e00a4b5;hpb=649fd1fa74ee22fb2f5220dbdcb25d02427034b2;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/ActionContainer.pm b/lib/Catalyst/ActionContainer.pm index 6b3f282..63b8fc9 100644 --- a/lib/Catalyst/ActionContainer.pm +++ b/lib/Catalyst/ActionContainer.pm @@ -3,15 +3,6 @@ package Catalyst::ActionContainer; use strict; use base qw/Class::Accessor::Fast/; -__PACKAGE__->mk_accessors(qw/part actions/); - -use overload ( - - # Stringify to path part for tree search - q{""} => sub { shift->{part} }, - -); - =head1 NAME Catalyst::ActionContainer - Catalyst Action Container @@ -25,13 +16,26 @@ See L. This is a container for actions. The dispatcher sets up a tree of these to represent the various dispatch points in your application. -=head1 METHODS +=cut -=head2 get_action($name) +__PACKAGE__->mk_accessors(qw/part actions/); + +use overload ( + + # Stringify to path part for tree search + q{""} => sub { shift->{part} }, + +); + +sub new { + my ( $class, $fields ) = @_; + + $fields = { part => $fields, actions => {} } unless ref $fields; + + $class->SUPER::new($fields); +} -Returns an action from this container based on the action name, or undef -=cut sub get_action { my ( $self, $name ) = @_; @@ -39,6 +43,32 @@ sub get_action { return; } +sub add_action { + my ( $self, $action, $name ) = @_; + $name ||= $action->name; + $self->actions->{$name} = $action; +} + +1; + +__END__ + +=head1 METHODS + +=head2 new(\%data | $part) + +Can be called with { part => $part, actions => \%actions } for full +construction or with just a part, which will result in an empty actions +hashref to be populated via add_action later + +=head2 get_action($name) + +Returns an action from this container based on the action name, or undef + +=head2 add_action($action, [ $name ]) + +Adds an action, optionally providing a name to override $action->name + =head2 actions Accessor to the actions hashref, containing all actions in this container. @@ -50,7 +80,7 @@ stringifies to. =head1 AUTHOR -Matt S. Trout +Matt S. Trout =head1 COPYRIGHT