-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 8b687bb
Showing
11 changed files
with
399 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# runtime dir | ||
/runtime | ||
|
||
# vendor dir | ||
/vendor | ||
|
||
# composer lock file | ||
composer.lock | ||
|
||
# IDE & OS files | ||
.*.swp | ||
.idea | ||
nbproject | ||
.buildpath | ||
.project | ||
.settings | ||
Thumbs.db | ||
.DS_Store | ||
|
||
# Added by HiDev | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"package": { | ||
"name": "hipanel-module-dashboard", | ||
"label": "DashboardModule", | ||
"title": "Dashboard Plugin for HiPanel", | ||
"type": "yii2-extension", | ||
"features": "yii2, extension", | ||
"license": "BSD-3-Clause", | ||
"forum": "https://forum.hiqdev.com/hipanel", | ||
"language": "PHP", | ||
"keywords": "dashboard, hipanel, plugin", | ||
"year": 2015 | ||
}, | ||
"vendor": { | ||
"name": "hiqdev", | ||
"title": "HiQDev", | ||
"homepage": "https://hiqdev.com/", | ||
"email": "[email protected]", | ||
"authors": { | ||
"Andrii Vasyliev": { | ||
"role": "Project lead", | ||
"email": "[email protected]", | ||
"homepage": "https://hipanel.com/" | ||
}, | ||
"Dmitry Naumenko": { | ||
"role": "Lead backend developer", | ||
"email": "[email protected]", | ||
"homepage": "http://silverfire.me/" | ||
}, | ||
"Andrey Klochok": { | ||
"role": "Lead frontend developer", | ||
"email": "[email protected]", | ||
"homepage": "https://hiqdev.com/" | ||
}, | ||
"Yuriy Myronchuk": { | ||
"role": "QA Lead", | ||
"email": "[email protected]", | ||
"homepage": "https://hiqdev.com/" | ||
} | ||
} | ||
}, | ||
"deps": "all", | ||
"all": { | ||
"deps": "git, composer, LICENSE, README.md, CHANGELOG.md" | ||
}, | ||
"composer.json": { | ||
"require": { | ||
"yiisoft/yii2": "2.*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"hiqdev\\modules\\dashboard\\": "" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
hiqdev/hipanel-module-dashboard changelog | ||
----------------------------------------- | ||
|
||
### 0.1.0 under development | ||
|
||
- inited | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Copyright © 2015, HiQDev (https://hiqdev.com/) | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions | ||
are met: | ||
|
||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in | ||
the documentation and/or other materials provided with the | ||
distribution. | ||
* Neither the name of HiQDev nor DashboardModule nor the names of its | ||
contributors may be used to endorse or promote products derived | ||
from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
/** | ||
* @link http://hiqdev.com/hipanel-module-dashboard | ||
* @license http://hiqdev.com/hipanel-module-dashboard/license | ||
* @copyright Copyright (c) 2015 HiQDev | ||
*/ | ||
|
||
namespace hipanel\modules\dashboard; | ||
|
||
class Module extends \hipanel\base\Module | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
/** | ||
* @link http://hiqdev.com/hipanel-module-dashboard | ||
* @license http://hiqdev.com/hipanel-module-dashboard/license | ||
* @copyright Copyright (c) 2015 HiQDev | ||
*/ | ||
|
||
namespace hipanel\modules\dashboard; | ||
|
||
class Plugin extends \hiqdev\pluginmanager\Plugin | ||
{ | ||
protected $_items = [ | ||
'menus' => [ | ||
[ | ||
'class' => 'hipanel\modules\dashboard\SidebarMenu', | ||
], | ||
], | ||
'modules' => [ | ||
'dashboard' => [ | ||
'class' => 'hipanel\modules\dashboard\Module', | ||
], | ||
], | ||
]; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Dashboard Plugin for HiPanel | ||
---------------------------- | ||
|
||
Dashboard Plugin for HiPanel | ||
|
||
For more info see wiki: | ||
https://github.com/hiqdev/hipanel-module-dashboard/wiki |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
/** | ||
* @link http://hiqdev.com/hipanel-module-dashboard | ||
* @license http://hiqdev.com/hipanel-module-dashboard/license | ||
* @copyright Copyright (c) 2015 HiQDev | ||
*/ | ||
|
||
namespace hipanel\modules\dashboard; | ||
|
||
class SidebarMenu extends \hipanel\base\Menu | ||
{ | ||
|
||
protected $_addTo = 'sidebar'; | ||
|
||
protected $_where = [ | ||
'after' => ['header'], | ||
'before' => ['client', 'finance', 'tickets', 'domains', 'servers', 'hosting'], | ||
]; | ||
|
||
protected $_items = [ | ||
'dashboard' => [ | ||
'label' => 'Dashboard', | ||
'url' => ['/dashboard/dashboard'], | ||
'icon' => 'fa-dashboard', | ||
], | ||
]; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"name": "hiqdev/hipanel-module-dashboard", | ||
"type": "yii2-extension", | ||
"description": "Dashboard Plugin for HiPanel", | ||
"keywords": [ | ||
"dashboard", | ||
"hipanel", | ||
"plugin" | ||
], | ||
"homepage": "https://hiqdev.com/hipanel-module-dashboard", | ||
"license": "BSD-3-Clause", | ||
"support": { | ||
"email": "[email protected]", | ||
"source": "https://github.com/hiqdev/hipanel-module-dashboard", | ||
"issues": "https://github.com/hiqdev/hipanel-module-dashboard/issues", | ||
"wiki": "https://github.com/hiqdev/hipanel-module-dashboard/wiki", | ||
"forum": "https://forum.hiqdev.com/hipanel" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Andrii Vasyliev", | ||
"role": "Project lead", | ||
"email": "[email protected]", | ||
"homepage": "https://hipanel.com/" | ||
}, | ||
{ | ||
"name": "Dmitry Naumenko", | ||
"role": "Lead backend developer", | ||
"email": "[email protected]", | ||
"homepage": "http://silverfire.me/" | ||
}, | ||
{ | ||
"name": "Andrey Klochok", | ||
"role": "Lead frontend developer", | ||
"email": "[email protected]", | ||
"homepage": "https://hiqdev.com/" | ||
}, | ||
{ | ||
"name": "Yuriy Myronchuk", | ||
"role": "QA Lead", | ||
"email": "[email protected]", | ||
"homepage": "https://hiqdev.com/" | ||
} | ||
], | ||
"require": { | ||
"yiisoft/yii2": "2.*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"hiqdev\\modules\\dashboard\\": "" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
/** | ||
* @link http://hiqdev.com/hipanel-module-dashboard | ||
* @license http://hiqdev.com/hipanel-module-dashboard/license | ||
* @copyright Copyright (c) 2015 HiQDev | ||
*/ | ||
|
||
namespace hipanel\modules\dashboard\controllers; | ||
|
||
/** | ||
* Dashboard controller | ||
* | ||
* Simply empty: does only render index. | ||
*/ | ||
class DashboardController extends \hipanel\base\Controller | ||
{ | ||
} |
Oops, something went wrong.