Caution: This documentation is for eZ Publish legacy, from version 3.x to 6.x.
For 5.x documentation covering Platform see eZ Documentation Center, for difference between legacy and Platform see 5.x Architecture overview.

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)


Comments

  • no limitation for move?

    When assigning this policy, if I choose "assign with limitation," it will still only be added to the role as "No limitations." Is this a bug?
  • And how does the interface work?

    I would like to see an example or some kind of documentation on how moving nodes work.

    Thanks, Martin
    • Re: And how does the interface work?

      • Re: Re: And how does the interface work?

        Thanks for the answer!

        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