add crud controller to user job/scope history

This commit is contained in:
2023-09-20 14:32:32 +02:00
parent 124abf563e
commit 8a6f29ef79
3 changed files with 62 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
<?php
declare(strict_types=1);
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Chill\MainBundle\Controller;
use Chill\MainBundle\CRUD\Controller\CRUDController;
use Chill\MainBundle\Pagination\PaginatorInterface;
use Symfony\Component\HttpFoundation\Request;
class UserJobHistoryController extends CRUDController
{
protected function orderQuery(string $action, $query, Request $request, PaginatorInterface $paginator)
{
$query
->addOrderBy('e.startDate', 'ASC')
->addOrderBy('e.id', 'ASC')
;
return parent::orderQuery($action, $query, $request, $paginator);
}
}

View File

@@ -0,0 +1,29 @@
<?php
declare(strict_types=1);
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Chill\MainBundle\Controller;
use Chill\MainBundle\CRUD\Controller\CRUDController;
use Chill\MainBundle\Pagination\PaginatorInterface;
use Symfony\Component\HttpFoundation\Request;
class UserScopeHistoryController extends CRUDController
{
protected function orderQuery(string $action, $query, Request $request, PaginatorInterface $paginator)
{
$query
->addOrderBy('e.startDate', 'ASC')
->addOrderBy('e.id', 'ASC')
;
return parent::orderQuery($action, $query, $request, $paginator);
}
}