aboutsummaryrefslogtreecommitdiffstats
path: root/perllib
diff options
context:
space:
mode:
authorHakim Cassimally <hakim@mysociety.org>2014-03-17 17:34:13 +0000
committerStruan Donald <struan@exo.org.uk>2014-03-25 13:13:30 +0000
commit87f54caa2618bbf873ac87b5b7bca04f7969d603 (patch)
treebebb27506a99e63529d213ad683672b8623c224d /perllib
parent4db84e2b69378d6e26daa6ba460437d2e2c0d498 (diff)
Allow cobrands to set their own path to pin files
New cobrand function of pin_path that sets the path to where the image files for pins are located. Defaults to /i This still means they need to use the same file names but they can at least put those in a cobrand directory rather than having to overwrite the files in /i or fudge it with pin_colour
Diffstat (limited to 'perllib')
-rw-r--r--perllib/FixMyStreet/App/Controller/Report.pm2
-rw-r--r--perllib/FixMyStreet/Cobrand/Default.pm14
2 files changed, 14 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Report.pm b/perllib/FixMyStreet/App/Controller/Report.pm
index 24dececac..081256fe2 100644
--- a/perllib/FixMyStreet/App/Controller/Report.pm
+++ b/perllib/FixMyStreet/App/Controller/Report.pm
@@ -199,7 +199,7 @@ sub generate_map_tags : Private {
? [ {
latitude => $problem->latitude,
longitude => $problem->longitude,
- colour => $c->cobrand->moniker eq 'zurich'? $c->cobrand->pin_colour($problem) : 'yellow',
+ colour => $c->cobrand->pin_colour($problem, 'report'),
type => 'big',
} ]
: [],
diff --git a/perllib/FixMyStreet/Cobrand/Default.pm b/perllib/FixMyStreet/Cobrand/Default.pm
index 832a6bb5c..2de3eae5f 100644
--- a/perllib/FixMyStreet/Cobrand/Default.pm
+++ b/perllib/FixMyStreet/Cobrand/Default.pm
@@ -731,10 +731,22 @@ Returns the colour of pin to be used for a particular report
sub pin_colour {
my ( $self, $p, $context ) = @_;
#return 'green' if time() - $p->confirmed->epoch < 7 * 24 * 60 * 60;
- return 'yellow' if $context eq 'around' || $context eq 'reports';
+ return 'yellow' if $context eq 'around' || $context eq 'reports' || $context eq 'report';
return $p->is_fixed ? 'green' : 'red';
}
+=head2 path_to_pin_icons
+
+Used to override the path for the pin icons if you want to add custom pin icons
+for your cobrand.
+
+=cut
+
+sub path_to_pin_icons {
+ return '/i/';
+}
+
+
=head2 tweak_all_reports_map
Used to tweak the display settings of the map on the all reports pages.