Habari\FormContainer::move_after PHP Method

move_after() public method

Moves a control after the target control
public move_after ( FormControl $control, FormControl $target )
$control FormControl FormControl object to move
$target FormControl FormControl object acting as destination
    function move_after(FormControl $control, FormControl $target)
    {
        $this->move($control, $target, 1);
        // Increase left slice's size by one.
    }