/[drupal]/contributions/modules/mlm/theme/mlm.theme.inc
ViewVC logotype

Diff of /contributions/modules/mlm/theme/mlm.theme.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.3, Sun Aug 23 23:06:28 2009 UTC revision 1.4, Wed Aug 26 02:51:34 2009 UTC
# Line 1  Line 1 
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().
# Line 38  function mlm_theme_theme() { Line 38  function mlm_theme_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    

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

  ViewVC Help
Powered by ViewVC 1.1.2