aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/Cobrand/LichfieldDC.pm
blob: 4d93aaf767f047200e57add13c7e585abd7d767b (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
package FixMyStreet::Cobrand::LichfieldDC;
use base 'FixMyStreet::Cobrand::UKCouncils';

use strict;
use warnings;

sub council_id { return 2434; }
sub council_area { return 'Lichfield district'; }
sub council_name { return 'Lichfield District Council'; }
sub council_url { return 'lichfielddc'; }

# Different to councils parent due to this being a two-tier council. If we get
# more, this can be genericised in the parent.
sub site_restriction {
    return ( "and council like '%2434%'", 'lichfield', { council => '2434' } );
}

sub problems_clause {
    return { council => { like => '%2434%' } };
}

# FIXME - need to double check this is all correct
sub disambiguate_location {
    my $self = shift;
    return {
        %{ $self->SUPER::disambiguate_location() },
        centre => '52.688198,-1.804966',
        span   => '0.1196,0.218675',
        bounds => [ '52.807793,-1.586291', '52.584891,-1.963232' ],
    };
}

1;