aboutsummaryrefslogtreecommitdiff
path: root/muamba.theme.inc
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-10-04 17:38:19 -0300
committerSilvio Rhatto <rhatto@riseup.net>2011-10-04 17:38:19 -0300
commit12f55f534e67ca29e16c83c089b614022ea0ac0b (patch)
tree99632674e6f00928312eb94bb54b0eba8db49d73 /muamba.theme.inc
parentf47b73d4bc46351a2ed6fdb842ce452b815df58e (diff)
downloadmuamba-12f55f534e67ca29e16c83c089b614022ea0ac0b.tar.gz
muamba-12f55f534e67ca29e16c83c089b614022ea0ac0b.tar.bz2
Coding accept()
Diffstat (limited to 'muamba.theme.inc')
-rw-r--r--muamba.theme.inc13
1 files changed, 10 insertions, 3 deletions
diff --git a/muamba.theme.inc b/muamba.theme.inc
index 5fc3b19..af15da9 100644
--- a/muamba.theme.inc
+++ b/muamba.theme.inc
@@ -84,9 +84,16 @@ function theme_muamba_colorbox_link($variables) {
/**
* Theme callback.
- *
- * @todo
*/
function theme_muamba_request_message($transaction = NULL) {
- return t('User has requested an item');
+ $link = l(t('your requests page'), 'muamba');
+ return t('Hi, I would like to request this item of yours. Please visit @link to manage this request',
+ array('@link' => $link));
+}
+
+/**
+ * Theme callback.
+ */
+function theme_muamba_accept_message($transaction = NULL) {
+ return t('I accept your item request');
}