aboutsummaryrefslogtreecommitdiff
path: root/muamba.theme.inc
diff options
context:
space:
mode:
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');
}