aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet
diff options
context:
space:
mode:
Diffstat (limited to 'perllib/FixMyStreet')
-rw-r--r--perllib/FixMyStreet/Cobrand/Westminster.pm29
1 files changed, 29 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Westminster.pm b/perllib/FixMyStreet/Cobrand/Westminster.pm
new file mode 100644
index 000000000..6076b9caf
--- /dev/null
+++ b/perllib/FixMyStreet/Cobrand/Westminster.pm
@@ -0,0 +1,29 @@
+package FixMyStreet::Cobrand::Westminster;
+use base 'FixMyStreet::Cobrand::Whitelabel';
+
+use strict;
+use warnings;
+
+sub council_area_id { return 2504; }
+sub council_area { return 'Westminster'; }
+sub council_name { return 'Westminster City Council'; }
+sub council_url { return 'Westminster'; }
+
+sub disambiguate_location {
+ my $self = shift;
+ return {
+ %{ $self->SUPER::disambiguate_location() },
+ town => 'Westminster',
+ centre => '51.513444,-0.160467',
+ bounds => [ 51.483816, -0.216088, 51.539793, -0.111101 ],
+ };
+}
+
+sub enter_postcode_text {
+ my ($self) = @_;
+ return 'Enter a ' . $self->council_area . ' postcode, or street name';
+}
+
+sub send_questionnaires { 0 }
+
+1;