om-maximenu-submenu-content.tpl.php in OM Maximenu 6
Same filename and directory in other branches
om_maximenu_submenu_content.tpl.php Default theme implementation of om maximenu contents with submenu blocks
Available variables:
- $content: blocks
Helper variables:
- $zebra: Same output as $block_zebra but independent of any block region.
- $key: link id.
- $id: automatic id given in order of appearance.
- $is_front: Flags true when presented in the front page.
- $logged_in: Flags true when the current user is a logged-in member.
- $is_admin: Flags true when the current user is an administrator.
- $user: (object) user properties
1 theme call to om-maximenu-submenu-content.tpl.php
- om-maximenu-submenu-links.tpl.php in tpl/
om-maximenu-submenu-links.tpl.php - om_maximenu_submenu_links.tpl.php Default theme implementation of om maximenu links with submenu blocks
File
tpl/om-maximenu-submenu-content.tpl.phpView source
<?php
/**
* @file om_maximenu_submenu_content.tpl.php
* Default theme implementation of om maximenu contents with submenu blocks
*
* Available variables:
* - $content: blocks
*
* Helper variables:
* - $zebra: Same output as $block_zebra but independent of any block region.
* - $key: link id.
* - $id: automatic id given in order of appearance.
* - $is_front: Flags true when presented in the front page.
* - $logged_in: Flags true when the current user is a logged-in member.
* - $is_admin: Flags true when the current user is an administrator.
* - $user: (object) user properties
*
* @see template_preprocess_om_maximenu_submenu()
* @see template_preprocess_om_maximenu_submenu_links()
* @see template_preprocess_om_maximenu_submenu_content()
*
*/
?>
<?php
if (!empty($content)) {
?>
<div class="om-maximenu-content om-maximenu-content-nofade closed">
<div class="om-maximenu-top">
<div class="om-maximenu-top-left"></div>
<div class="om-maximenu-top-right"></div>
</div><!-- /.om-maximenu-top -->
<div class="om-maximenu-middle">
<div class="om-maximenu-middle-left">
<div class="om-maximenu-middle-right">
<?php
print om_maximenu_content_render($content);
?>
<div class="om-clearfix"></div>
</div><!-- /.om-maximenu-middle-right -->
</div><!-- /.om-maximenu-middle-left -->
</div><!-- /.om-maximenu-middle -->
<div class="om-maximenu-bottom">
<div class="om-maximenu-bottom-left"></div>
<div class="om-maximenu-bottom-right"></div>
</div><!-- /.om-maximenu-bottom -->
<div class="om-maximenu-arrow"></div>
<div class="om-maximenu-open">
<input type="checkbox" value="" />
<?php
print t('Stay');
?>
</div><!-- /.om-maximenu-open -->
</div><!-- /.om-maximenu-content -->
<?php
}
?>