How to disable the "Move" function in the edit menu?

Permalink
Hi there.
I moved in C5 an existing web site. Cool!! I did some template mods based on the isEditMode() retur value. I repeat: cool!
Now I would like to disable the "move" function that is in the edit menu. Could it be some php code to put inline into the page (or template)? Maybe waiting for a new feature like a checkbox in the advanced permission management to enable/disable element moving would take long time. Any suggestion is appreciated.

digitmaster
 
Mnkras replied on at Permalink Reply
Mnkras
here are all the functions:

http://www.concrete5.org/api/Permissions/CollectionPermissions.html...

(scroll to the bottom)

but you would more likely use this:http://www.concrete5.org/api/Permissions/Permissions.html...
digitmaster replied on at Permalink Reply
digitmaster
Thank you.
Unfortunately I cannot recognize at which function the "move" action belongs to.

What I see is that the querysting sended to the page index.php when the move action is performed is "btask=arrange".

Can you telle me more?
Thanks.
Mnkras replied on at Permalink Reply
Mnkras
oohh your right, sorry about that i assumed it was in there.

http://www.concrete5.org/api/Blocks/Block.html#methodmove...

or maybe

http://www.concrete5.org/api/Pages/Page.html#methodisArrangeMode...

im not sure
digitmaster replied on at Permalink Reply
digitmaster
Great. Right page.
I did it.
Cheers!