prooph/link-dashboard

Prooph LINK module that provides a dashboard view

v0.2.0 2015-05-10 13:00 UTC

This package is auto-updated.

Last update: 2024-03-17 01:16:39 UTC


README

Dashboard module for prooph LINK

Widgets

A standard prooph LINK application home screen is rendered by the dashboard module. The module overrides the home route of the application to point to the IndexController of the dashboard module. Other modules can register WidgetController via configuration. The IndexController loops through all registered WidgetController and calls the widgetAction which should return a DashboardWidget. A typical module configuration to register a widget looks like the following:

//module.config.php of the link-app-core module
return [
    'prooph.link.dashboard' => [
        'system_config_widget' => [
            'controller' => 'Prooph\Link\Application\Controller\DashboardWidget', //Controller alias of WidgetController
            'order' => 101 //Order of the widget on the dashboard
        ]
    ],
    //...
];

Widget Groups

to be defined ...

Support

Contribution

You wanna help us? Great! We appreciate any help, be it on implementation level, UI improvements, testing, donation or simply trying out the system and give us feedback. Just leave us a note in our google group linked above and we can discuss further steps.

Thanks, your prooph team