moved cookbook entries into categories and gave a very brief intro to each section
[catagits/Catalyst-Runtime.git] / lib / Catalyst / ActionContainer.pm
index 6b3f282..258cb15 100644 (file)
@@ -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
@@ -27,6 +35,12 @@ to represent the various dispatch points in your application.
 
 =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
@@ -39,6 +53,18 @@ sub get_action {
     return;
 }
 
+=head2 add_action($action, [ $name ])
+
+Adds an action, optionally providing a name to override $action->name
+
+=cut
+
+sub add_action {
+    my ( $self, $action, $name ) = @_;
+    $name ||= $action->name;
+    $self->actions->{$name} = $action;
+}
+
 =head2 actions
 
 Accessor to the actions hashref, containing all actions in this container.