This modules allows you to create light-weight market on your site.
The main intention of module is to avail a market place without heavy cart modules.
Panels User Override let a user override the display of panes for his/her account.
It is used to transform Panels in to a Dashboard module.
The user can order the panes to his/her own preference and even remove panes from the display (by dragging panes to the non rendered region 'Content Stock').
The administrator can provide extra panes in the special region 'Content Stock'. This region will not be rendered; it is used to provide the user with a 'stock of content'.
Usage
Download and Enable the module as usual.
Create a panel or edit a panel as usual.
On the 'General' tab of your variant pick 'User Override' as the Renderer.
Add content to the variant as usual; You have a extra region 'Content Stock'.
In 'Content Stock' you can put panes that will not be renedered by default, but are there for your users to choose from.
Save your panel.
Goto 'user/[UID]/display-override' pick your panel variant and drag-and-drop to your liking.
Don't forget to enable the permissions for roles that may use this functionality. (users without the right permissions are able to see the panels in the default state)
Things to watch out for!
I use it, it works for me... but you might have a different use case.
Have you ever felt annoyed for uploading only one file at a time to IMCE? This module gives you a new way to upload files using IMCE.
Basically, this module provides a simple API to allow other modules register to IMCE Upload form, so user can choose the needed uploader in IMCE Profile form. That means you can have lot of uploaders in the system and you can choose which profile uses which uploader.
Besides that, It also provides the Plupload uploader as a plugin (in this module) to allow uploading multiple files at a time. If you want to use it, just select "IMCE Uploader - Plupload" the module list and enable it.
Implementation
This module uses hook_form_FORM_ID_alter() to alter the IMCE Profile form
(imce_profile_form) to manage the uploaders.
Integration
Feel free to integrate your uploader using my API. There are only 2 functions
you should know
- hook_imce_uploader(): Register your uploaders.
- hook_imce_uploader_alter(): Change the list of registered uploaders.
You can see the file imce_uploader.api.php and my plugin for more information.