diff options
Diffstat (limited to 't/Cobrands/Mysite/Util.pm')
-rw-r--r-- | t/Cobrands/Mysite/Util.pm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/t/Cobrands/Mysite/Util.pm b/t/Cobrands/Mysite/Util.pm index b37d3cdf3..42b920f91 100644 --- a/t/Cobrands/Mysite/Util.pm +++ b/t/Cobrands/Mysite/Util.pm @@ -7,7 +7,7 @@ # Copyright (c) 2009 UK Citizens Online Democracy. All rights reserved. # Email: louise@mysociety.org. WWW: http://www.mysociety.org # -# $Id: Util.pm,v 1.1 2009-08-27 08:42:46 louise Exp $ +# $Id: Util.pm,v 1.2 2009-08-31 09:49:59 louise Exp $ package Cobrands::Mysite::Util; use Page; @@ -20,6 +20,14 @@ sub new{ return bless {}, $class; } +sub site_name{ + return 'mysite'; +} + +sub site_restriction{ + return (' and council = 1 ', 99); +} + sub page{ my %params = (); return ("A cobrand produced page", %params); |