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

Diff of /contributions/themes/sunflower/sunflower.theme

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

revision 1.23, Thu Mar 31 19:53:49 2005 UTC revision 1.24, Sat Apr 30 18:42:48 2005 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: sunflower.theme,v 1.22 2005/01/29 10:17:13 tdobes Exp $  // $Id: sunflower.theme,v 1.23 2005/03/31 19:53:49 tdobes Exp $
   
 /**  
  *   Theme: sunflower  
  *   Author: Joe Lombardo (j0e)  
  *   Email: joe@familytimes.com  
  *   Description: Found on OSWD.com  (Open Source Web Design).  Listed as sunflower and  
  *   created by 'artwiz'.  I've modified it to my tastes and drupalized it.  Suggestions  
  *   are welcome.  
  */  
3    
4  function sunflower_features() {  function sunflower_features() {
5    return array('toggle_name', 'toggle_primary_links');    return array('toggle_name', 'toggle_primary_links');
# Line 117  function sunflower_page($content) { Line 108  function sunflower_page($content) {
108      $output .= $tabs;      $output .= $tabs;
109    }    }
110    
111    if ($help = menu_get_active_help()) {    $output .= theme('help');
     $output .= "<div id=\"help\">$help</div><hr />";  
   }  
112    
113    $output .= theme_status_messages();    $output .= theme('status_messages');
114    
115    $output .= "\n<!-- begin content -->\n";    $output .= "\n<!-- begin content -->\n";
116    $output .= $content;    $output .= $content;
# Line 232  function sunflower_comment($comment, $li Line 221  function sunflower_comment($comment, $li
221    return $output;    return $output;
222  } // close comment function  } // close comment function
223    
224    function sunflower_help() {
225      if ($help = menu_get_active_help()) {
226        return '<div class="help">'. $help .'</div><hr />';
227      }
228    } // close help function
229    
230  ?>  ?>

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24

  ViewVC Help
Powered by ViewVC 1.1.2