aboutsummaryrefslogtreecommitdiffstats
path: root/perllib
diff options
context:
space:
mode:
authorlouise <louise>2009-11-24 16:04:22 +0000
committerlouise <louise>2009-11-24 16:04:22 +0000
commitfc42652a742c9960aa47d7449fe85d55c63622f6 (patch)
tree2d45bd3f9ebb8f300fa2dd848dc4d5867f83802c /perllib
parent7fbf3df9197d5c983954c33105e5c6e747a49a78 (diff)
Alternative date rendering, extra text for each update
Diffstat (limited to 'perllib')
-rw-r--r--perllib/Cobrand.pm39
1 files changed, 38 insertions, 1 deletions
diff --git a/perllib/Cobrand.pm b/perllib/Cobrand.pm
index 4b630a099..073b18ded 100644
--- a/perllib/Cobrand.pm
+++ b/perllib/Cobrand.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: Cobrand.pm,v 1.44 2009-11-23 17:25:43 louise Exp $
+# $Id: Cobrand.pm,v 1.45 2009-11-24 16:04:22 louise Exp $
package Cobrand;
use strict;
@@ -332,6 +332,24 @@ sub disambiguate_location {
}
}
+=item prettify_epoch COBRAND EPOCHTIME
+
+=cut
+
+sub prettify_epoch {
+ my ($cobrand, $epochtime) = @_;
+ my $handle;
+ if ($cobrand){
+ $handle = cobrand_handle($cobrand);
+ }
+ if ( !$cobrand || !$handle || !$handle->can('prettify_epoch')){
+ return 0;
+ } else{
+ return $handle->prettify_epoch($epochtime);
+ }
+
+}
+
=item form_elements FORM_NAME Q
Return HTML for any extra needed elements for FORM_NAME
@@ -484,6 +502,25 @@ sub extra_problem_meta_text {
return $handle->extra_problem_meta_text($problem);
}
}
+
+=item extra_update_meta_text COBRAND PROBLEM
+
+Returns any extra text to be displayed with an update.
+
+=cut
+sub extra_update_meta_text {
+ my ($cobrand, $update) = @_;
+ my $handle;
+ if ($cobrand){
+ $handle = cobrand_handle($cobrand);
+ }
+ if ( !$cobrand || !$handle || !$handle->can('extra_update_meta_text')){
+ return '';
+ } else{
+ return $handle->extra_update_meta_text($update);
+ }
+}
+
=item url
Given a URL, return a URL with any extra params needed appended to it.