blob: f8650169d8649966e5e9cb4431b279a8f5e3d49e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package FixMyStreet::Cobrand::Borsetshire;
use parent 'FixMyStreet::Cobrand::Whitelabel';
use strict;
use warnings;
sub council_area_id { return 2608; }
sub council_area { return 'Borsetshire'; }
sub council_name { return 'Borsetshire County Council'; }
sub council_url { return 'demo'; }
sub pin_colour {
my ( $self, $p, $context ) = @_;
return 'grey' if $p->is_closed;
return 'green' if $p->is_fixed;
return 'yellow' if $p->state eq 'confirmed';
return 'orange'; # all the other `open_states` like "in progress"
}
sub path_to_pin_icons {
return '/cobrands/oxfordshire/images/';
}
sub send_questionnaires {
return 0;
}
sub bypass_password_checks { 1 }
1;
|