You are here

megamenu_admin.tpl.php in Megamenu 6.2

Same filename and directory in other branches
  1. 6 megamenu_admin.tpl.php
  2. 7 megamenu_admin.tpl.php

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);

// Print the closing form elements (ID and hidden validation tags)