Drag n drop / Set Precedence
I'm a spud. When creating a number of nav items in the admin panel I'll frequently forget the last precedence I set for the order.
Would be helpful if there was an option of dragging the nav items in tree and/or list view to set the order.
Comments
If anyone is interested in helping with that let me know and I can point you in the right direction.
The rendering of that tree is done by the fuel/modules/fuel/controllers/module.php
However, to add the drag and drop, we may need a different plugin. The trickiest part will be the onDrageComplete action (or whatever the event is) that we can standardize the implementation across all modules. I imagine it would need to be an ajax save to a controller. We may need to add an additional method to the modules model to save (e.g. the $this->model->tree_callback($save))
Hope this helps.