aboutsummaryrefslogtreecommitdiff
path: root/muamba.misc.inc
blob: 4168464a671e0d8f067f3f6628e9f03e38ceff55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

/**
 * @file
 * Multiple-user Asset Manager and Borrowing Ambient.
 */

/**
 * Request an item.
 *
 * @param $nid
 *   Requested item.
 */
function muamba_request($nid) {
  // Sanitize
  $nid = (int) $nid;

  return t('You have requested an item');
}