OpenXE/classes/Modules/Api/Resource/Feature/SortingFeatureTrait.php

25 lines
605 B
PHP
Raw Normal View History

2021-05-21 08:49:41 +02:00
<?php
namespace Xentral\Modules\Api\Resource\Feature;
use Xentral\Modules\Api\Resource\Filter\Select\SortingFilter;
trait SortingFeatureTrait
{
/**
* Festlegen welche Sortierungen erlaubt sind
*
* @example $this->registerSortingParams([
* 'bezeichnung' => 'k.bezeichnung',
* 'projekt' => 'k.projekt',
* 'parent' => 'k.parent',
* ]);
*
* @param array $params
*/
protected function registerSortingParams(array $params)
{
$this->registerSelectFilter(new SortingFilter($params));
}
}