aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Whiteland <dave@mysociety.org>2014-08-07 03:08:19 +0100
committerDave Whiteland <dave@mysociety.org>2014-08-07 03:08:19 +0100
commit98e3efa546aed5fb4e5acfcdb3d9da5e620b1e7e (patch)
tree6d77e22928d44f7616b76363725a5bb56efeeb62
parentad3d1aaa4762bff796f1363bba10dbd7a6d73e01 (diff)
Add MakeMyIsland cobrand module (really for title)
Perhaps useful as we might be adding more stuff if the project expands, e.g., geocoder disambiguation.
-rw-r--r--perllib/FixMyStreet/Cobrand/MakeMyIsland.pm14
1 files changed, 14 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/MakeMyIsland.pm b/perllib/FixMyStreet/Cobrand/MakeMyIsland.pm
new file mode 100644
index 000000000..ebeb15fbb
--- /dev/null
+++ b/perllib/FixMyStreet/Cobrand/MakeMyIsland.pm
@@ -0,0 +1,14 @@
+package FixMyStreet::Cobrand::MakeMyIsland;
+use base 'FixMyStreet::Cobrand::Default';
+
+use strict;
+use warnings;
+
+sub site_title { return 'MakeMyIsland'; }
+
+sub country {
+ return 'MV';
+}
+
+1;
+