Sulu\Component\SmartContent\Configuration\Builder::enableSorting PHP Method

enableSorting() public method

public enableSorting ( array $sorting )
$sorting array
    public function enableSorting(array $sorting)
    {
        $this->configuration->setSorting(array_map(function ($item) {
            return new PropertyParameter($item['column'], $item['title'] ?: ucfirst($item['column']));
        }, $sorting));
        return $this;
    }