Unterlagen 5. semester
Version vom 20. März 2012, 00:05 Uhr von Webmaster (Diskussion | Beiträge)
<?php
class CSSTree {
var $tree; var $ul; function drawTree($tree, $depth=0) {
$result = "\n".str_repeat(' ', $depth*2)."
- \n";
list($last, $li) = array(count($tree)-1, 0);
foreach (array_keys($tree) as $node) {
$branch =& $tree[$node];
$class = ($li++ == $last) ? ' class="lc"' : NULL;
if (is_array($branch['node'])) {
$result .= str_repeat(' ', $depth*2+2).'<li'.$class.'>'.
'<a href="'.$branch['href'].'" title="'.$branch['title'].'">'.$branch['title'].
' '.$branch['date'].'</a>'.
$this->drawTree($branch['node'], $depth+1).
str_repeat(' ', $depth*2+2)."\n";
} else {
$result .= str_repeat(' ', $depth*2+2).'<li'.$class.'>'.
'<a href="'.$branch['href'].'" title="'.$branch['title'].'">'.
$branch['title'].' '.$branch['date'].'</a>'.
"\n";
}
}
return $result.str_repeat(' ', $depth*2)."
\n";
} function showTree($id = NULL) { $this->ul = $this->drawTree($this->tree);
if ($id != NULL) $this->ul = substr_replace($this->ul, '
- ', 0, 5);
print($this->ul);
}
}
$ct = new CSSTree;
$ct->tree = array(array('title'=>'Foo', 'date'=>'06.09.2005', 'href'=>'#',
'node' => array(array('title'=>'Foo', 'date'=>'06.09.2005', 'href'=>'#'),
array('title'=>'Foo', 'date'=>'06.09.2005', 'href'=>'#'),
array('title'=>'Foo', 'date'=>'06.09.2005', 'href'=>'#'))),
array('title'=>'Foo', 'date'=>'06.09.2005', 'href'=>'#',
'node' => array(array('title'=>'Foo', 'date'=>'06.09.2005', 'href'=>'#'),
array('title'=>'Foo', 'date'=>'06.09.2005', 'href'=>'#'),
array('title'=>'Foo', 'date'=>'06.09.2005', 'href'=>'#',
'node' => array(array('title'=>'Foo', 'date'=>'06.09.2005', 'href'=>'#'),
array('title'=>'Foo', 'date'=>'06.09.2005', 'href'=>'#'),
array('title'=>'Foo', 'date'=>'06.09.2005', 'href'=>'#'))))),
array('title'=>'Foo', 'date'=>'06.09.2005', 'href'=>'#'));
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- Altklausur Meeresbiologie
- Klausur Februar 2011 - Teil 1
- Klausur Februar 2011 - Teil 2
- Klausur Februar 2011 - Teil 3
- Altklausur Tierphysiologie (Dank an Madame Incognito)
- Altklausurfragen Tierphysiologie (Super, gleich noch eine Spenderin!!!)
- Gedächtnisprotokoll (vielen Dank an die Spenderin)
- Altklausur Zellbiologie (vielen Dank an Madame Incognito)
- Weiteres Gedächtnisprotokoll (vielen Dank an eine weitere Spenderin)
- Klausur Februar 2011
- Klausur Februar 2012 (vielen Dank an Lisa)
- Altklausur Entwicklungsbiologie der Tiere (Thx 2 Tobi)
- Altklausur Entwicklungsbiologie der Tiere WS11/12 (Mille grazie an Leonie)
- Altklausur Entwicklungsbiologie der Tiere WS11/12 (weitere Version) (Dank den unbekannten Spendern)
showTree('filelist')?>
Meeresbiologie