aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/Cobrand/HighwaysEngland.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perllib/FixMyStreet/Cobrand/HighwaysEngland.pm')
-rw-r--r--perllib/FixMyStreet/Cobrand/HighwaysEngland.pm16
1 files changed, 16 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/HighwaysEngland.pm b/perllib/FixMyStreet/Cobrand/HighwaysEngland.pm
new file mode 100644
index 000000000..5e91d517c
--- /dev/null
+++ b/perllib/FixMyStreet/Cobrand/HighwaysEngland.pm
@@ -0,0 +1,16 @@
+package FixMyStreet::Cobrand::HighwaysEngland;
+use parent 'FixMyStreet::Cobrand::UK';
+
+use strict;
+use warnings;
+
+sub enter_postcode_text { 'Enter a location, road name or postcode' }
+
+sub example_places {
+ my $self = shift;
+ return $self->feature('example_places') || $self->next::method();
+}
+
+sub allow_photo_upload { 0 }
+
+1;