/[drupal]/contributions/themes/marvinclassic/marvinclassic.theme
ViewVC logotype

Diff of /contributions/themes/marvinclassic/marvinclassic.theme

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

revision 1.4, Thu Mar 31 19:53:49 2005 UTC revision 1.5, Sat Apr 30 18:42:48 2005 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: marvinclassic.theme,v 1.3 2005/01/29 10:17:13 tdobes Exp $  // $Id: marvinclassic.theme,v 1.4 2005/03/31 19:53:49 tdobes Exp $
3    
4  function marvinclassic_features() {  function marvinclassic_features() {
5    return array('logo', 'toggle_primary_links', 'toggle_secondary_links');    return array('logo', 'toggle_primary_links', 'toggle_secondary_links');
# Line 59  function marvinclassic_page($content) { Line 59  function marvinclassic_page($content) {
59      $output .= $tabs;      $output .= $tabs;
60    }    }
61    
62    if ($help = menu_get_active_help()) {    $output .= theme('help');
     $output .= "<div id=\"help\">$help</div><hr />";  
   }  
63    
64    $output .= theme_status_messages();    $output .= theme('status_messages');
65    
66    $output .= "\n<!-- begin content -->\n";    $output .= "\n<!-- begin content -->\n";
67    $output .= $content;    $output .= $content;
# Line 176  function marvinclassic_comment($comment, Line 174  function marvinclassic_comment($comment,
174  function marvinclassic_links($links, $delimiter = " &middot; ") {  function marvinclassic_links($links, $delimiter = " &middot; ") {
175    return implode($delimiter, $links);    return implode($delimiter, $links);
176  }  }
177    
178    function marvinclassic_help() {
179      if ($help = menu_get_active_help()) {
180        return '<div class="help">'. $help .'</div><hr />';
181      }
182    }
183    
184  ?>  ?>

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

  ViewVC Help
Powered by ViewVC 1.1.2