Menu

1. Requirement
2. Installation
3. Rules
4. Themes
5. Plugins
        1. Backend Plugins
        2. Frontend Plugins
6. Variables
7. Commands
8. Ajax
9. Component Dbug
10. Component Query builder
11. Extend Backend


View the Project on GitHub

Extend Backend

Css

You can add your own css by editing file “/nuts/css/custom.css”

Header

You can add javascript, css or what you want by editing file “/nuts/_templates/_header_custom.html”

Widgets

Widget are displayed in user dashboard, if user has access

3 types of widgets :

Create a widget is simple :

  1. Go to to your plugin folder “/plugins/my_plugin/”
  2. Create a file “widget.inc.php”
  3. Edit file and place your content
<?php

Plugin::dashboardAddWidget($widget_title, 'high', 'plugin_name', 'full', 'style', "hello from widget");

Et voilà !

Notification

Notification are displayed in user dashboard.

Create a notification is simple :

  1. Go to to your plugin folder “/plugins/my_plugin/”
  2. Create a file “notification.inc.php”
  3. Edit file and place your content
<?php

Plugin::dashboardAddNotification('info|success|error', "Your message");

Et voilà !