blob: c53b8e9710d8fbc23504c384f507192ffb33f5d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
package FixMyStreet::Cobrand::FixMyBarangay;
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 'PH';
}
sub language_domain { 'FixMyBarangay' }
sub area_types {
return [ 'BGY' ];
}
sub disambiguate_location {
return {
country => 'ph',
bing_country => 'Philippines',
};
}
sub only_authed_can_create {
return 1;
}
sub areas_on_around {
return [ 1, 2 ];
}
sub can_support_problems {
return 1;
}
sub reports_by_body { 1 }
1;
|