Skip to content

Commit

Permalink
Merge commit '9e44f2c'
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed May 15, 2015
2 parents 1a9a010 + 9e44f2c commit 852b297
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions Menu.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?php
/**
* @link http://hiqdev.com/hipanel-module-server
* @license http://hiqdev.com/hipanel-module-server/license
* @copyright Copyright (c) 2015 HiQDev
*/

namespace hipanel\modules\server;

class Menu extends \hipanel\base\Menu implements \yii\base\BootstrapInterface
{

protected $_menus = [
'sidebar' => [
'where' => [
'after' => ['domains', 'tickets', 'finance', 'clients', 'dashboard'],
'before' => ['hosting'],
],
'items' => [
'servers' => [
'label' => 'Servers',
'url' => ['/server/server/index'],
'icon' => 'fa-server',
'items' => [
'servers' => [
'label' => 'Servers',
'url' => ['/server/server/index'],
'icon' => 'fa-server',
],
],
],
],
],
];

}

0 comments on commit 852b297

Please sign in to comment.