aboutsummaryrefslogtreecommitdiff
path: root/muamba.module
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-09-26 23:32:32 -0300
committerSilvio Rhatto <rhatto@riseup.net>2011-09-26 23:32:32 -0300
commitfa79ee7ea6e3c06bb68b44cf4c78fb7f339b5f06 (patch)
tree662587dd5b9542a657c3cced55b71fca62b87c55 /muamba.module
parent804ed5f81b4e89a66e3e232d641360be23722902 (diff)
downloadmuamba-fa79ee7ea6e3c06bb68b44cf4c78fb7f339b5f06.tar.gz
muamba-fa79ee7ea6e3c06bb68b44cf4c78fb7f339b5f06.tar.bz2
Implementing hook_privatemsg_view_alter()
Diffstat (limited to 'muamba.module')
-rw-r--r--muamba.module16
1 files changed, 16 insertions, 0 deletions
diff --git a/muamba.module b/muamba.module
index 6476093..eabd4db 100644
--- a/muamba.module
+++ b/muamba.module
@@ -135,6 +135,13 @@ function muamba_theme($existing, $type, $theme, $path) {
),
'file' => 'muamba.theme.inc',
),
+ 'muamba_colorbox_link' => array(
+ 'variables' => array(
+ 'path' => NULL,
+ 'text' => NULL,
+ ),
+ 'file' => 'muamba.theme.inc',
+ ),
);
}
@@ -167,3 +174,12 @@ function muamba_block_view($delta = '') {
}
return $block;
}
+
+/**
+ * Implements hook_privatemsg_view_alter()
+ *
+ * @todo
+ */
+function muamba_privatemsg_view_alter(&$content) {
+ $content['participants']['#markup'] = $content['participants']['#markup'] . 'TODO: Add here request management bar.';
+}