t('sidebar_left'), 'sidebar_right' => t('sidebar_right'), 'content' => t('content'), 'footer' => t('footer'), ); } function marinelli_width($left, $right) { $width = 540; if (!$left ) { $width = $width +190; } if (!$right) { $width = $width +190; } return $width; } /** * Return a themed breadcrumb trail. * * @param $breadcrumb * An array containing the breadcrumb links. * @return a string containing the breadcrumb output. */ function phptemplate_breadcrumb($breadcrumb) { if (!empty($breadcrumb)) { $breadcrumb[] = drupal_get_title(); array_shift($breadcrumb); return '
'.t('You are here').''. implode(' / ', $breadcrumb) .'