| 1 |
|
| 2 |
********************************************************************
|
| 3 |
D R U P A L M O D U L E
|
| 4 |
********************************************************************
|
| 5 |
Name: Control Panel Module
|
| 6 |
Author: der <dreed10 -at- gmail -dot- com>
|
| 7 |
Drupal: 4.7, 5.x and 6.x
|
| 8 |
********************************************************************
|
| 9 |
DESCRIPTION:
|
| 10 |
|
| 11 |
This module adds a graphical control panel page. It allows the user
|
| 12 |
to specify the menu path to use as the source for the Control Panel.
|
| 13 |
It also allows the user to specify if they want the Control Panel
|
| 14 |
module to recursively build sub panels for the main Control Panel.
|
| 15 |
|
| 16 |
The Control Panel can also be generated through a Drupal block.
|
| 17 |
Multiple blocks can be created each with their own menu path source.
|
| 18 |
|
| 19 |
For developers: You can use the build_controlpanel function of this
|
| 20 |
module to generate a controlpanel anywhere in your module or template
|
| 21 |
code. The function call looks like:
|
| 22 |
|
| 23 |
controlpanel_build_controlpanel('menu name:menu id', TRUE, NULL)
|
| 24 |
|
| 25 |
The first parameter is the menu name followed by the menu id separated
|
| 26 |
by a colon.
|
| 27 |
|
| 28 |
********************************************************************
|
| 29 |
INSTALLATION:
|
| 30 |
|
| 31 |
1. Create folder 'modules/controlpanel'
|
| 32 |
|
| 33 |
2. Copy all the modules files, keeping directory structure, to the
|
| 34 |
folder 'modules/controlpanel'
|
| 35 |
|
| 36 |
3. Enable the controlpanel module in 'admin/build/modules'
|
| 37 |
|
| 38 |
4. [OPTIONAL] Configure module in admin/settings/controlpanel
|
| 39 |
|
| 40 |
5. If using Control Panel blocks configure the block(s) in
|
| 41 |
admin/build/block
|
| 42 |
|
| 43 |
|
| 44 |
********************************************************************
|