/[drupal]/contributions/themes/tarski/template.php
ViewVC logotype

Contents of /contributions/themes/tarski/template.php

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


Revision 1.2 - (show annotations) (download) (as text)
Sat Apr 26 19:31:33 2008 UTC (18 months, 4 weeks ago) by ceejayoz
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +2 -2 lines
File MIME type: text/x-php
coder.module fixes.
1 <?php
2
3 // $Id: template.php,v 1.1 2008/04/26 01:55:30 ceejayoz Exp $
4
5 function phptemplate_feed_icon($url) {
6 return '<p><a class="feed" href="'. check_url($url) .'">'. t('Subscribe to feed') .'</a></p>';
7 }
8
9 function phptemplate_body_class() {
10 if (theme_get_setting('tarski_centre_theme')) {
11 $class = 'centre';
12 }
13
14 if (isset($class)) {
15 print ' class="'. $class .'"';
16 }
17 }
18
19 function phptemplate_breadcrumb($breadcrumb) {
20 if (!empty($breadcrumb)) {
21 return implode(' › ', $breadcrumb);
22 }
23 }

  ViewVC Help
Powered by ViewVC 1.1.2