From e237b7e7583c6e7ab35840050d8bd9ce71ac5a6f Mon Sep 17 00:00:00 2001 From: Gervase Markham Date: Thu, 27 Jan 2011 12:55:58 +0000 Subject: Allow extensions to alter quicksearch terms and search format. r=mkanat. https://bugzilla.mozilla.org/show_bug.cgi?id=621878 --- extensions/Example/Extension.pm | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'extensions/Example') diff --git a/extensions/Example/Extension.pm b/extensions/Example/Extension.pm index 14bf6df87..f56416559 100644 --- a/extensions/Example/Extension.pm +++ b/extensions/Example/Extension.pm @@ -649,6 +649,14 @@ sub product_end_of_create { } } +sub quicksearch_map { + my ($self, $args) = @_; + my $map = $args->{'map'}; + + # This demonstrates adding a shorter alias for a long custom field name. + $map->{'impact'} = $map->{'cf_long_field_name_for_impact_field'}; +} + sub sanitycheck_check { my ($self, $args) = @_; -- cgit v1.2.3-24-g4f1b