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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<?php
/**
* @file
* Template for displaying the muamba widget.
*/
// User and path
$path = drupal_get_path('module', 'muamba');
global $user;
// Add javascript and CSS files
drupal_add_js($path .'/muamba.js');
drupal_add_css($path .'/muamba.css');
$content = '';
$output = '';
if ($node->uid != $user->uid) {
if (!user_is_logged_in()) {
print t('You have to be logged in to be able to ask for this item.');
return;
}
elseif (!$available && $transactions['uid'] != $user->uid) {
$content .= theme('image',
array(
'path' => $path .'/images/unavailable.png',
'alt' => t('Item unavailable'),
'title' => t('Item unavailable'),
)
);
}
elseif ($transactions['uid'] == $user->uid) {
foreach (muamba_actions_available('sent', $transactions['status']) as $action) {
$content .= theme('muamba_widget_icon', array('status' => $action, 'id' => $transactions['mid']));
}
}
else {
$content .= theme('muamba_widget_icon', array('status' => MUAMBA_REQUESTED, 'id' => $node->nid));
}
}
else {
foreach ($transactions as $transaction) {
$requester = user_load($transaction['uid']);
$content .= t('Request from @name.', array('@name' => $requester->name));
$content .= '<br />';
foreach (muamba_actions_available('received', $transaction['status']) as $action) {
$content .= theme('muamba_widget_icon', array('status' => $action, 'id' => $transaction['mid']));
}
}
}
if (!empty($content)) {
$output = '<div class="muamba-widget">';
$output .= '<h3>'. t('Options') .'</h3>';
$output .= $content;
$output .= '</div>';
}
print $output;
|