GridHandler::saveSequence PHP Method

saveSequence() public method

Hook oportunity for grid features to request a save items sequence operation. If no grid feature that implements the saveSequence hook is attached to this grid, this operation will only return the data changed event json message.
public saveSequence ( $args, $request ) : JSONMessage
$args array
$request Request
return JSONMessage JSON object
    function saveSequence($args, $request)
    {
        $this->callFeaturesHook('saveSequence', array('request' => &$request, 'grid' => &$this));
        return DAO::getDataChangedEvent();
    }