X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FActionContainer.pm;h=570a0cde030a6c17a8dcd4ac07bfb7e14f9bad0a;hb=b7ce908fc5c404dcbc480c7ecf9a275b92fcc26f;hp=eb6bb7464d969853716b37ca5a7ba80bcb71df46;hpb=cfd04b0cabf99346090fe4e3312e393364e571ef;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/ActionContainer.pm b/lib/Catalyst/ActionContainer.pm index eb6bb74..570a0cd 100644 --- a/lib/Catalyst/ActionContainer.pm +++ b/lib/Catalyst/ActionContainer.pm @@ -12,9 +12,17 @@ use overload ( ); +sub new { + my ( $class, $fields ) = @_; + + $fields = { part => $fields, actions => {} } unless ref $fields; + + $class->SUPER::new($fields); +} + =head1 NAME -Catalyst::Action - Catalyst Action +Catalyst::ActionContainer - Catalyst Action Container =head1 SYNOPSIS @@ -22,24 +30,43 @@ See L. =head1 DESCRIPTION +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 -=over 4 +=head2 get_action($name) + +Returns an action from this container based on the action name, or undef -=item part +=cut + +sub get_action { + my ( $self, $name ) = @_; + return $self->actions->{$name} if defined $self->actions->{$name}; + return; +} -=item actions +=head2 add_action($action, [ $name ]) -=item new +Adds an action, optionally providing a name to override $action->name =cut -sub new { # Dumbass constructor - my ( $class, $attrs ) = @_; - return bless { %{ $attrs || {} } }, $class; +sub add_action { + my ( $self, $action, $name ) = @_; + $name ||= $action->name; + $self->actions->{$name} = $action; } -=back +=head2 actions + +Accessor to the actions hashref, containing all actions in this container. + +=head2 part + +Accessor to the path part this container resolves to. Also what the container +stringifies to. =head1 AUTHOR