megamenu_admin.tpl.php in Megamenu 6
File
megamenu_admin.tpl.php
View source
<?php
print drupal_render($form['title']);
print drupal_render($form['help']);
?>
<table>
<thead>
<tr>
<th>Menu</th>
<th>Options</th>
<th>Enable Mega Menu Block</th>
</tr>
</thead>
<tbody>
<?php
foreach ($menu as $m) {
?>
<tr>
<td><h3><?php
print $m['details']['title'];
?></h3></td>
<td><?php
print l('configure mega', 'admin/build/megamenu/settings/' . $m['details']['menu_name']);
?></td>
<td>
<?php
print drupal_render($form['enabled'][$m['details']['menu_name']]);
?>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
<div><?php
print drupal_render($form['save_configuration']);
?></div>
<?php
print drupal_render($form);