2017 © Pedro Peláez
 

yii2-extension yii2-dashboard

Dashboard manager for Yii2

image

cornernote/yii2-dashboard

Dashboard manager for Yii2

  • Thursday, November 30, 2017
  • by cornernote
  • Repository
  • 11 Watchers
  • 29 Stars
  • 1,678 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 7 Forks
  • 4 Open issues
  • 5 Versions
  • 7 % Grown

The README.md

Yii2 Dashboard

Latest Version Software License Build Status HHVM Coverage Status Quality Score Total Downloads Yii2 Framework, (*1)

Yii2 Dashboard is a module that allows you to create and manage dashboards using custom layouts and panels., (*2)

Features

  • Create custom layouts with regions where panels can be placed.
  • Create custom panels to display your data inside a layout region.
  • Drag-and-drop interface to rearrange panels inside a layout.

Documentation

Getting started? Try the Installation Guide. You will find further information in the Documentation., (*3)

For changes since the last version see the Changelog., (*4)

Config

<?php
$config = [
    'modules' => [
        'dashboard' => [
            'class' => 'cornernote\dashboard\Module',
            'layouts' => [
                'default' => 'cornernote\dashboard\layouts\DefaultLayout',
                'example' => 'tests\app\dashboard\layouts\ExampleLayout',
            ],
            'updateRoles' => ['dashboardAdmin'],
            'panels' => [
                'example' => [
                    'class' => 'app\dashboard\panels\ExamplePanel',
                    'allowRules => ['exampleRule'], 
                ],
            ],
            'dashboards' => [
                'dashboard first' => [
                    'viewRoles => ['firstRule'],    
                ],
            ],
        ],
    ],
];

Screenshots

Dashboard View, (*5)

More images are available from the Screenshots page., (*6)

Contributing

Contributions are welcome. Please refer to the contributing guidelines., (*7)

Thanks to everyone who has contributed., (*8)

Project Resources

License

BSD-3 - Please refer to the license., (*9)

The Versions