Skip to content

Commit

Permalink
inited
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed May 21, 2015
0 parents commit 8b687bb
Show file tree
Hide file tree
Showing 11 changed files with 399 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .gitignore
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

56 changes: 56 additions & 0 deletions .hidev/config.json
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\\": ""
}
}
}
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
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

29 changes: 29 additions & 0 deletions LICENSE
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.
12 changes: 12 additions & 0 deletions Module.php
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
{
}
25 changes: 25 additions & 0 deletions Plugin.php
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',
],
],
];

}
7 changes: 7 additions & 0 deletions README.md
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
28 changes: 28 additions & 0 deletions SidebarMenu.php
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',
],
];

}
53 changes: 53 additions & 0 deletions composer.json
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\\": ""
}
}
}
17 changes: 17 additions & 0 deletions controllers/DashboardController.php
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
{
}
Loading

0 comments on commit 8b687bb

Please sign in to comment.