| 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 |
}
|