]> git.decadent.org.uk Git - maypole.git/commitdiff
This adds basic searching. Want to change it to AbstractSearch, though.
authorSimon Cozens <simon@simon-cozens.org>
Sat, 31 Jan 2004 15:48:36 +0000 (15:48 +0000)
committerSimon Cozens <simon@simon-cozens.org>
Sat, 31 Jan 2004 15:48:36 +0000 (15:48 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@32 48953598-375a-da11-a14b-00016c27c3ee

lib/Apache/MVC/Model/CDBI.pm
templates/factory/list

index 695e1cbd7dec1fe0e6e6f9ed33863113df0b2c90..88c1d5282769240dcf338316d64b8465dfb37045 100644 (file)
@@ -4,6 +4,7 @@ use Lingua::EN::Inflect::Number qw(to_PL);
 use Class::DBI::AsForm;
 use Class::DBI::FromCGI;
 use CGI::Untaint;
+use strict;
 
 sub description { "A poorly defined class" }
 
@@ -37,7 +38,7 @@ sub do_edit :Exported {
     if (my %errors = $obj->cgi_update_errors) {
         # Set it up as it was:
         warn "There were errors: ".Dumper(\%errors)."\n";
-        $r->{template_args}{cgi_params} = \%params;
+        $r->{template_args}{cgi_params} = $r->{params};
         $r->{template_args}{errors} = \%errors;
         $r->{template} = "edit";
     } else {
@@ -59,4 +60,15 @@ sub adopt {
     $child->columns( Stringify => qw/ name / );
 }
 
+sub search :Exported {
+    my ($self, $r) = @_;
+    my %fields = map {$_ => 1 } $self->columns;
+    my %values = map { $_ => $params{$_} }
+                 grep { $params{$_} and $fields{$_} } keys %{$r->{params}};
+    $r->objects([ %values ? $self->search_like(%values) : $self->retrieve_all ]);
+    $r->template("list");
+    $r->{template_args}{search} = 1;
+}
+
+
 1;
index efd3a95518fb09e64bde86e16fb7f5b179a569ac..d52d3e887075252ce886923e1de6cf05e47f15a3 100644 (file)
@@ -2,7 +2,11 @@
 
 [% INCLUDE header %]
 
+[% IF search %]
+<h2> Search results </h2>
+[% ELSE %]
 <h2> Listing of all [% classmetadata.plural %]</h2>
+[% END %]
 
 [% INCLUDE navbar %]
 <DIV class="search"> [% INCLUDE search_form %] </DIV>