diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-07-13 15:48:30 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-07-13 15:48:30 +0100 |
commit | 932f88e1a7776eeb2567b91e003361bb5275bf5d (patch) | |
tree | 2d2f4005f41dcbb2b6b54edbae1a10e4b34d4d03 /perllib/FixMyStreet | |
parent | 0000afc1f4b28c96365981fc24437a6983ee7ea2 (diff) |
Move all_reports_style functionality to templates.
Diffstat (limited to 'perllib/FixMyStreet')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Bromley.pm | 1 | ||||
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Default.pm | 9 | ||||
-rw-r--r-- | perllib/FixMyStreet/Cobrand/FixMyStreet.pm | 2 |
3 files changed, 0 insertions, 12 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Bromley.pm b/perllib/FixMyStreet/Cobrand/Bromley.pm index a52875819..62827eec1 100644 --- a/perllib/FixMyStreet/Cobrand/Bromley.pm +++ b/perllib/FixMyStreet/Cobrand/Bromley.pm @@ -10,7 +10,6 @@ sub council_id { return 2482; } sub council_area { return 'Bromley'; } sub council_name { return 'Bromley Council'; } sub council_url { return 'bromley'; } -sub all_reports_style { return 'detailed'; } sub base_url { return FixMyStreet->config('BASE_URL') if FixMyStreet->config('STAGING_SITE'); diff --git a/perllib/FixMyStreet/Cobrand/Default.pm b/perllib/FixMyStreet/Cobrand/Default.pm index a73487ca4..5de8bac37 100644 --- a/perllib/FixMyStreet/Cobrand/Default.pm +++ b/perllib/FixMyStreet/Cobrand/Default.pm @@ -132,15 +132,6 @@ Parameter is QUERY sub enter_postcode_text { '' } -=head2 all_reports_style - -Return the type of problem information to display on the all reports -pages for councils. Can be either simple or detailed. - -=cut - -sub all_reports_style { return 'simple'; } - =head2 set_lang_and_domain my $set_lang = $cobrand->set_lang_and_domain( $lang, $unicode, $dir ) diff --git a/perllib/FixMyStreet/Cobrand/FixMyStreet.pm b/perllib/FixMyStreet/Cobrand/FixMyStreet.pm index 33e071b66..65507b1a1 100644 --- a/perllib/FixMyStreet/Cobrand/FixMyStreet.pm +++ b/perllib/FixMyStreet/Cobrand/FixMyStreet.pm @@ -10,8 +10,6 @@ sub admin_base_url { return 'https://secure.mysociety.org/admin/bci/'; } -sub all_reports_style { return 'detailed'; } - sub allow_crosssell_adverts { return 1; } 1; |