GridHandler::saveSequence PHP 메소드

saveSequence() 공개 메소드

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
리턴 JSONMessage JSON object
    function saveSequence($args, $request)
    {
        $this->callFeaturesHook('saveSequence', array('request' => &$request, 'grid' => &$this));
        return DAO::getDataChangedEvent();
    }