nyamned has asked for the wisdom of the Perl Monks concerning the following question:
sub edit : Chained('object') : PathPart('edit') : Args(0) : FormConfig +('ticker/edit.yml') { my ( $self, $c ) = @_; $c->stash->{form}->model->default_values( $c->stash->{object} ); if ( $c->stash->{form}->submitted_and_valid ) { $c->stash->{form}->model->update( $c->stash->{object} ); $c->response->redirect( $c->uri_for( $c->controller('Ticker')- +>action_for('index') ) ); $c->detach; } $c->stash( template => 'ticker/edit.tt2' ); }
Thankssub edit : Chained('object') : PathPart('edit') : Args(0) : FormConfig +('ticker/edit.yml') { my ( $self, $c ) = @_; my $form = $c->stash->{form}; my $ticker = $c->stash->{object}; $form->model->default_values($ticker); if ( $form->submitted_and_valid ) { $form->model->update($ticker); $c->response->redirect( $c->uri_for( $c->controller('Ticker')- +>action_for('index') ) ); $c->detach; } $c->stash( template => 'ticker/edit.tt2' ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Coding style
by ahmad (Hermit) on Jul 13, 2010 at 10:46 UTC | |
|
Re: Coding style
by biohisham (Priest) on Jul 13, 2010 at 12:28 UTC | |
|
Re: Coding style
by roboticus (Chancellor) on Jul 13, 2010 at 10:51 UTC | |
by nyamned (Sexton) on Jul 13, 2010 at 11:18 UTC | |
by BioLion (Curate) on Jul 13, 2010 at 11:41 UTC | |
by ruzam (Curate) on Jul 13, 2010 at 14:14 UTC | |
by nyamned (Sexton) on Jul 13, 2010 at 16:56 UTC | |
by Argel (Prior) on Jul 13, 2010 at 20:42 UTC | |
by nyamned (Sexton) on Jul 13, 2010 at 21:11 UTC | |
by Argel (Prior) on Jul 13, 2010 at 23:56 UTC |