/[Frey]/trunk/lib/Frey/Action.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/Frey/Action.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 507 by dpavlin, Tue Nov 25 00:26:15 2008 UTC revision 510 by dpavlin, Tue Nov 25 13:38:53 2008 UTC
# Line 125  sub params_form { Line 125  sub params_form {
125                  my $attr = $class->meta->get_attribute( $name );                  my $attr = $class->meta->get_attribute( $name );
126                  $attr_type = $attr->type_constraint->name if $attr->has_type_constraint;                  $attr_type = $attr->type_constraint->name if $attr->has_type_constraint;
127    
128                    $value = $attr->default( $name ) if ! $value && $attr->has_default;
129    
130                  if ( ref($config_params) eq 'HASH' ) {                  if ( ref($config_params) eq 'HASH' ) {
131                          $value = $config_params->{$name};                          $value = $config_params->{$name};
132                  } elsif ( ref($config_params) eq 'ARRAY' ) {                  } elsif ( ref($config_params) eq 'ARRAY' ) {
# Line 135  sub params_form { Line 137  sub params_form {
137                  } elsif ( $attr_type !~ m{^(Str|Int)$} ) {                  } elsif ( $attr_type !~ m{^(Str|Int)$} ) {
138                                  $value_html = qq|<textarea name="$name" title="$attr_type">$value</textarea>|;                                  $value_html = qq|<textarea name="$name" title="$attr_type">$value</textarea>|;
139                  }                  }
140                  $value = $attr->default( $name ) if ! $value && $attr->has_default;                  
141                  $label_title = qq| title="| . $attr->documentation . qq|"| if $attr->has_documentation;                  $label_title = qq| title="| . $attr->documentation . qq|"| if $attr->has_documentation;
142    
143                  $default->{$name} = $value unless defined $default->{$name};                  $default->{$name} = $value unless defined $default->{$name};
144    
145                  $value_html = qq|<input type="$type" name="$name" title="$attr_type" value="$value">| unless $value_html;                  if ( ! $value_html ) {
146                            my $suffix = '';
147                            if ( $attr_type =~ m{^Bool$} ) {
148                                    $type = 'checkbox';
149                                    $suffix = ' checked' if $value;
150                            }
151                            $value_html = qq|<input type="$type" name="$name" title="$attr_type" value="$value"$suffix>|;
152                    }
153    
154  #               warn "# required $name ", $class->meta->get_attribute( $name )->dump( 2 );  #               warn "# required $name ", $class->meta->get_attribute( $name )->dump( 2 );
155                  $form .= qq|<label for="$name"$label_title>$label</label>| . $value_html;                  $form .= qq|<label for="$name"$label_title>$label</label>| . $value_html;

Legend:
Removed from v.507  
changed lines
  Added in v.510

  ViewVC Help
Powered by ViewVC 1.1.26