diff options
author | David Lawrence <dlawrence@mozilla.com> | 2011-10-05 00:43:47 +0200 |
---|---|---|
committer | David Lawrence <dlawrence@mozilla.com> | 2011-10-05 00:43:47 +0200 |
commit | befdcc8f9a30f55e91227bac0ee1813a661002b3 (patch) | |
tree | 34daa9fe986e9cc42e803f6dc8b382e2f05feb4a /extensions/Example/Extension.pm | |
parent | 8592e84f5d251a284f09fae2947101715e094a78 (diff) | |
download | bugzilla-befdcc8f9a30f55e91227bac0ee1813a661002b3.tar.gz bugzilla-befdcc8f9a30f55e91227bac0ee1813a661002b3.tar.xz |
more porting work
Diffstat (limited to 'extensions/Example/Extension.pm')
-rw-r--r-- | extensions/Example/Extension.pm | 36 |
1 files changed, 29 insertions, 7 deletions
diff --git a/extensions/Example/Extension.pm b/extensions/Example/Extension.pm index ef20a28f0..4498d2b22 100644 --- a/extensions/Example/Extension.pm +++ b/extensions/Example/Extension.pm @@ -211,15 +211,12 @@ sub search_operator_field_override { sub _component_nonchanged { my $original = shift; - my $invocant = shift; - - my %func_args = @_; - $invocant->$original(%func_args); + my ($invocant, $args) = @_; + $invocant->$original($args); # Actually, it does not change anything in the result, # just an example. - my ($term) = @func_args{qw(term)}; - $$term = $$term . " OR 1=2"; + $args->{term} = $args->{term} . " OR 1=2"; } sub bugmail_recipients { @@ -264,9 +261,14 @@ sub config_modify_panels { my $auth_params = $panels->{'auth'}->{params}; my ($info_class) = grep($_->{name} eq 'user_info_class', @$auth_params); my ($verify_class) = grep($_->{name} eq 'user_verify_class', @$auth_params); - + push(@{ $info_class->{choices} }, 'CGI,Example'); push(@{ $verify_class->{choices} }, 'Example'); + + push(@$auth_params, { name => 'param_example', + type => 't', + default => 0, + checker => \&check_numeric }); } sub db_schema_abstract_schema { @@ -454,6 +456,26 @@ sub install_update_db { # $dbh->bz_add_index('example', 'example_new_column_idx', [qw(value)]); } +sub install_update_db_fielddefs { + my $dbh = Bugzilla->dbh; +# $dbh->bz_add_column('fielddefs', 'example_column', +# {TYPE => 'MEDIUMTEXT', NOTNULL => 1, DEFAULT => ''}); +} + +sub job_map { + my ($self, $args) = @_; + + my $job_map = $args->{job_map}; + + # This adds the named class (an instance of TheSchwartz::Worker) as a + # handler for when a job is added with the name "some_task". + $job_map->{'some_task'} = 'Bugzilla::Extension::Example::Job::SomeClass'; + + # Schedule a job like this: + # my $queue = Bugzilla->job_queue(); + # $queue->insert('some_task', { some_parameter => $some_variable }); +} + sub mailer_before_send { my ($self, $args) = @_; |