mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
29 lines
821 B
PHP
29 lines
821 B
PHP
<?php
|
|
/* @var $this MenuWidget */
|
|
|
|
App()->getClientScript()->registerCssFile(App()->getAssetManager()->publish(Yii::getPathOfAlias('ext.Menu.assets'). '/nav.css'));
|
|
App()->getClientScript()->registerScriptFile(App()->getAssetManager()->publish(Yii::getPathOfAlias('ext.Menu.assets'). '/nav.js'));
|
|
?>
|
|
<div class="menubar">
|
|
<?php
|
|
if (isset($menu['title']))
|
|
{
|
|
echo '<div class="menubar-title ui-widget-header">';
|
|
echo $menu['title'];
|
|
echo '</div>';
|
|
}
|
|
if (isset($menu['items']))
|
|
{
|
|
echo '<nav class="menubar">';
|
|
echo $this->renderMenu($menu);
|
|
echo '</nav>';
|
|
}
|
|
?>
|
|
</div>
|
|
<?php
|
|
|
|
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
?>
|