#!/usr/bin/perl -w # # Cobrand.pm: # Cobranding for FixMyStreet. # # # Copyright (c) 2009 UK Citizens Online Democracy. All rights reserved. # Email: louise@mysociety.org. WWW: http://www.mysociety.org # # $Id: Cobrand.pm,v 1.1 2009-08-20 12:39:35 louise Exp $ package Cobrand; use strict; use Carp; =item get_allowed_cobrands Return an array of allowed cobrand subdomains =cut sub get_allowed_cobrands{ my $allowed_cobrand_string = mySociety::Config::get('ALLOWED_COBRANDS'); my @allowed_cobrands = split(/:/, $allowed_cobrand_string); return @allowed_cobrands; }