X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FActionContainer.pm;h=258cb15227e4f2c32559aafcc3cd40518685c7c2;hb=908e3d9e7a61974b3807b7ab37862550452b2456;hp=f3ff514023f78502152fdf4a23007369cb823a51;hpb=aa6283e424c072151127157dbfb971dcaa589f4b;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/ActionContainer.pm b/lib/Catalyst/ActionContainer.pm index f3ff514..258cb15 100644 --- a/lib/Catalyst/ActionContainer.pm +++ b/lib/Catalyst/ActionContainer.pm @@ -12,6 +12,14 @@ use overload ( ); +sub new { + my ( $class, $fields ) = @_; + + $fields = { part => $fields, actions => {} } unless ref $fields; + + $class->SUPER::new($fields); +} + =head1 NAME Catalyst::ActionContainer - Catalyst Action Container @@ -22,24 +30,49 @@ 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 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) -=item part +Returns an action from this container based on the action name, or undef -=item actions +=cut + +sub get_action { + my ( $self, $name ) = @_; + return $self->actions->{$name} if defined $self->actions->{$name}; + return; +} + +=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