1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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>';
|