Created
November 9, 2011 23:10
-
-
Save keks/1353478 to your computer and use it in GitHub Desktop.
drupal theme fuckup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name = dcbl1 | |
description = Theme fuer db-events.de | |
core = 7.x | |
stylesheets[all][] = style.css |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>tpl</title> | |
<script src="jquery.js"></script> | |
<script src="script.js"></script> | |
</head> | |
<body> | |
<div id="mainnav"> | |
<?php echo $page['topmenu']; ?> | |
</div> | |
<div id="container"> | |
<div id="header" class=""> | |
</div> | |
<div id="body"> | |
<div id="sidebar"> | |
<div id="slidebox"> | |
<div id="slider"> | |
<ul class="menubox"> | |
<li> | |
<ul class="submenubox"> | |
<li><a href="a">a</a></li> | |
<li><a href="a">a</a></li> | |
<li><a href="a">a</a></li> | |
</ul> | |
</li> | |
<li> | |
<ul class="submenubox"> | |
<li><a href="b">b</a></li> | |
<li><a href="b">b</a></li> | |
<li><a href="b">b</a></li> | |
</ul> | |
</li> | |
<li> | |
<ul class="submenubox"> | |
<li><a href="c">c</a></li> | |
<li><a href="c">c</a></li> | |
<li><a href="c">c</a></li> | |
</ul> | |
</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
<div id="content"> | |
<?php print $page['content']; ?> | |
</div> | |
</div> | |
</div> | |
<div id="footer" /> | |
</body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function dcbl1_topmenu($variables){ | |
$main_menu = $variables['main_menu']; | |
$out = '<ul>'; | |
foreach($main_menu as $item){ | |
$out .= '<li class="item"><a href="'.$item['href'].'">'.$item['title'].'</a></li>'; | |
} | |
return $out.'</ul>'; | |
} | |
function dcbl1_preprocess(&$vars){ | |
touch('/tmp/b'); | |
$vars['a'] = 'a'; | |
$vars['topmenu'] = dcbl1_topmenu($vars); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Notice: Undefined index: topmenu in include() (line 11 of /mnt/data/web/dennish/sites/all/themes/dcbl1/page.tpl.php). | |
Notice: Undefined index: main_menu in dcbl1_topmenu() (line 4 of /mnt/data/web/dennish/sites/all/themes/dcbl1/template.php). | |
Warning: Invalid argument supplied for foreach() in dcbl1_topmenu() (line 7 of /mnt/data/web/dennish/sites/all/themes/dcbl1/template.php). | |
Notice: Undefined index: main_menu in dcbl1_topmenu() (line 4 of /mnt/data/web/dennish/sites/all/themes/dcbl1/template.php). | |
Warning: Invalid argument supplied for foreach() in dcbl1_topmenu() (line 7 of /mnt/data/web/dennish/sites/all/themes/dcbl1/template.php). | |
Notice: Undefined index: main_menu in dcbl1_topmenu() (line 4 of /mnt/data/web/dennish/sites/all/themes/dcbl1/template.php). | |
Warning: Invalid argument supplied for foreach() in dcbl1_topmenu() (line 7 of /mnt/data/web/dennish/sites/all/themes/dcbl1/template.php). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment