GridHandler::getActions PHP 메소드

getActions() 공개 메소드

Get all actions for a given position within the grid.
public getActions ( $position = GRID_ACTION_POSITION_ABOVE ) : array
$position string The position of the actions.
리턴 array The LinkActions for the given position.
    function getActions($position = GRID_ACTION_POSITION_ABOVE)
    {
        if (!isset($this->_actions[$position])) {
            return array();
        }
        return $this->_actions[$position];
    }