}
}
+=head2 check_params
+
+ Checks parameters against the DFV profile for the class, returns the results
+ of DFV's check.
+
+ my $dfv_results = __PACKAGE__->check_params($r->params);
+
+=cut
+
+sub check_params {
+ my ($class,$params) = @_;
+ return Data::FormValidator->check($params, $class->dfv_profile);
+}
+
+
=head1 Action Methods
Action methods are methods that are accessed through web (or other public) interface.
return;
}
- my $required_cols = $class->required_columns;
my $errors;
if ($obj) {
($obj,$errors) = $class->_do_update($r,$obj);