summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Object.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2008-10-18 23:30:20 +0200
committermkanat%bugzilla.org <>2008-10-18 23:30:20 +0200
commite24b38a78773e0810b40e0905bca5563252eb49c (patch)
tree8b7cf32c5fe2eeb1494e5fff685078019d310448 /Bugzilla/Object.pm
parentd9e6f2408d2d6d0a1a827a54d719bd5d6fb35743 (diff)
downloadbugzilla-e24b38a78773e0810b40e0905bca5563252eb49c.tar.gz
bugzilla-e24b38a78773e0810b40e0905bca5563252eb49c.tar.xz
Bug 460293: Implement Bugzilla::Object::set_all and have editkeywords.cgi use it
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'Bugzilla/Object.pm')
-rw-r--r--Bugzilla/Object.pm39
1 files changed, 35 insertions, 4 deletions
diff --git a/Bugzilla/Object.pm b/Bugzilla/Object.pm
index 532b2c5bc..1e624e5f7 100644
--- a/Bugzilla/Object.pm
+++ b/Bugzilla/Object.pm
@@ -240,6 +240,14 @@ sub set {
$self->{$field} = $value;
}
+sub set_all {
+ my ($self, $params) = @_;
+ foreach my $key (keys %$params) {
+ my $method = "set_$key";
+ $self->$method($params->{$key});
+ }
+}
+
sub update {
my $self = shift;
@@ -743,10 +751,10 @@ not safe to use the object after it has been removed from the database.
=back
-=head2 Subclass Helpers
+=head2 Mutators
-These functions are intended only for use by subclasses. If
-you call them from anywhere else, they will throw a C<CodeError>.
+These are used for updating the values in objects, before calling
+C<update>.
=over
@@ -767,9 +775,11 @@ C<set> will call it with C<($value, $field)> as arguments, after running
the validator for this particular field. C<_set_global_validator> does not
return anything.
-
See L</VALIDATORS> for more information.
+B<NOTE>: This function is intended only for use by subclasses. If
+you call it from anywhere else, it will throw a C<CodeError>.
+
=item B<Params>
=over
@@ -785,6 +795,27 @@ be the same as the name of the field in L</VALIDATORS>, if it exists there.
=back
+
+=item C<set_all>
+
+=over
+
+=item B<Description>
+
+This is a convenience function which is simpler than calling many different
+C<set_> functions in a row. You pass a hashref of parameters and it calls
+C<set_$key($value)> for every item in the hashref.
+
+=item B<Params>
+
+Takes a hashref of the fields that need to be set, pointing to the value
+that should be passed to the C<set_> function that is called.
+
+=item B<Returns> (nothing)
+
+=back
+
+
=back
=head2 Simple Validators