| 1 |
<?php // $Id: mlm.theme.inc,v 1.2 2009/08/10 01:09:32 vauxia Exp $ |
<?php // $Id: mlm.theme.inc,v 1.3 2009/08/23 23:06:28 vauxia Exp $ |
| 2 |
|
|
| 3 |
/** |
/** |
| 4 |
* Implementation of hook_theme(). |
* Implementation of hook_theme(). |
| 38 |
); |
); |
| 39 |
} |
} |
| 40 |
|
|
| 41 |
function theme_mlm($mlm_list) { |
function theme_mlm($mlm) { |
| 42 |
drupal_set_title($mlm_list->title()); |
drupal_set_title($mlm->title()); |
| 43 |
$output = $mlm_list->description(); |
$output = $mlm->description(); |
| 44 |
$output .= drupal_get_form('mlm_subscription_form', NULL, array($mlm_list)); |
|
| 45 |
|
$output .= drupal_get_form('mlm_view_form', $mlm); |
| 46 |
return $output; |
return $output; |
| 47 |
} |
} |
| 48 |
|
|