GridHandler::getActions PHP Méthode

getActions() public méthode

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.
Résultat 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];
    }