move
Summary
Provides an interface for changing the location of a node.Balazs Halasy (07/04/2005 11:56 am)
Balazs Halasy (08/04/2005 9:53 pm)
ez publish / technical manual / 4.x / reference / modules / content / views / move
Caution: This documentation is for eZ Publish legacy, from version 3.x to 5.x.
Balazs Halasy (07/04/2005 11:56 am)
Balazs Halasy (08/04/2005 9:53 pm)
Comments
no limitation for move?
Friday 24 March 2006 5:46:05 pm
Jordan
And how does the interface work?
Monday 15 September 2008 10:22:42 am
Martin Dittmar
Thanks, Martin
Re: And how does the interface work?
Monday 15 September 2008 10:39:06 am
Svitlana Shatokhina
Re: Re: And how does the interface work?
Monday 15 September 2008 11:01:21 am
Martin Dittmar
I actually had in mind how to move nodes in my own template, e.g. for Publishing content from a hidden folder to a visible folder.
The following code worked for me:
<form name="browse" method="post" action={"content/action/"|ezurl}>
<input name="SelectedNodeIDArray[]" value="{$folder_id_to_move_to}" type="hidden">
<input name="ContentNodeID" value="{$source_node_id}" type="hidden">
<input name="MoveNodeAction" value="1" type="hidden">
<input name="BrowseActionName" value="MoveNode" type="hidden">
<input class="button" type="submit" name="SelectButton" value="Move" />
</form>
Greetings, Martin