aboutsummaryrefslogtreecommitdiff
path: root/muamba-powered.tpl.php
diff options
context:
space:
mode:
Diffstat (limited to 'muamba-powered.tpl.php')
-rw-r--r--muamba-powered.tpl.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/muamba-powered.tpl.php b/muamba-powered.tpl.php
new file mode 100644
index 0000000..587bce5
--- /dev/null
+++ b/muamba-powered.tpl.php
@@ -0,0 +1,46 @@
+<?php
+
+/**
+ * @file
+ * Show muamba sponsors.
+ */
+
+// Add javascript and CSS files
+$path = drupal_get_path('module', 'muamba');
+drupal_add_css($path .'/muamba.css');
+
+print '<div class="muamba-powered">';
+
+print theme('image',
+ array(
+ 'path' => $path .'/images/money-back-sticker.png',
+ 'alt' => t('Money back guarantee'),
+ 'title' => t('Money back guarantee'),
+ )
+);
+
+print theme('image',
+ array(
+ 'path' => $path .'/images/druplicon.png',
+ 'alt' => t('Powered by Drupal'),
+ 'title' => t('Powered by Drupal'),
+ )
+);
+
+print theme('image',
+ array(
+ 'path' => $path .'/images/earth-recycle.png',
+ 'alt' => t('Saving resources'),
+ 'title' => t('Saving resources'),
+ )
+);
+
+print theme('image',
+ array(
+ 'path' => $path .'/images/capitalism-kills.png',
+ 'alt' => t('Capitalism kills'),
+ 'title' => t('Capitalism kills'),
+ )
+);
+
+print '</div>';