diff options
Diffstat (limited to 'perllib/FixMyStreet')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/BellaVistaEnAccion.pm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/Cobrand/BellaVistaEnAccion.pm b/perllib/FixMyStreet/Cobrand/BellaVistaEnAccion.pm new file mode 100644 index 000000000..ffd39ba84 --- /dev/null +++ b/perllib/FixMyStreet/Cobrand/BellaVistaEnAccion.pm @@ -0,0 +1,33 @@ +package FixMyStreet::Cobrand::BellaVistaEnAccion; +use base 'FixMyStreet::Cobrand::Default'; + +use strict; +use warnings; + +sub path_to_web_templates { + my $self = shift; + return [ + FixMyStreet->path_to( 'templates/web', $self->moniker )->stringify, + FixMyStreet->path_to( 'templates/web/fixmystreet' )->stringify + ]; +} + +sub country { + return 'CL'; +} + +sub example_places { + return ( 'Dominica, Recoleta', 'Pio Nono' ); +} + +sub languages { [ 'es-cl,Castellano,es_CL', 'en-gb,English,en_GB' ] } + +sub disambiguate_location { + return { + country => 'cl', + bing_country => 'Santiago', + }; +} + +1; + |