mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-28 13:06:13 +00:00
add crud controller to user job/scope history
This commit is contained in:
parent
124abf563e
commit
8a6f29ef79
@ -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);
|
||||||
|
}
|
||||||
|
}
|
@ -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);
|
||||||
|
}
|
||||||
|
}
|
@ -23,6 +23,8 @@ use Chill\MainBundle\Controller\RegroupmentController;
|
|||||||
use Chill\MainBundle\Controller\UserController;
|
use Chill\MainBundle\Controller\UserController;
|
||||||
use Chill\MainBundle\Controller\UserJobApiController;
|
use Chill\MainBundle\Controller\UserJobApiController;
|
||||||
use Chill\MainBundle\Controller\UserJobController;
|
use Chill\MainBundle\Controller\UserJobController;
|
||||||
|
use Chill\MainBundle\Controller\UserJobHistoryController;
|
||||||
|
use Chill\MainBundle\Controller\UserScopeHistoryController;
|
||||||
use Chill\MainBundle\DependencyInjection\Widget\Factory\WidgetFactoryInterface;
|
use Chill\MainBundle\DependencyInjection\Widget\Factory\WidgetFactoryInterface;
|
||||||
use Chill\MainBundle\Doctrine\DQL\Age;
|
use Chill\MainBundle\Doctrine\DQL\Age;
|
||||||
use Chill\MainBundle\Doctrine\DQL\Extract;
|
use Chill\MainBundle\Doctrine\DQL\Extract;
|
||||||
@ -375,7 +377,7 @@ class ChillMainExtension extends Extension implements
|
|||||||
],
|
],
|
||||||
[
|
[
|
||||||
'class' => UserJobHistory::class,
|
'class' => UserJobHistory::class,
|
||||||
//'controller' => UserJobHistoryController::class,
|
'controller' => UserJobHistoryController::class,
|
||||||
'name' => 'admin_user_job_history',
|
'name' => 'admin_user_job_history',
|
||||||
'base_path' => '/admin/main/user-job-history',
|
'base_path' => '/admin/main/user-job-history',
|
||||||
'base_role' => 'ROLE_ADMIN',
|
'base_role' => 'ROLE_ADMIN',
|
||||||
@ -388,7 +390,7 @@ class ChillMainExtension extends Extension implements
|
|||||||
],
|
],
|
||||||
[
|
[
|
||||||
'class' => UserScopeHistory::class,
|
'class' => UserScopeHistory::class,
|
||||||
//'controller' => UserScopeHistoryController::class,
|
'controller' => UserScopeHistoryController::class,
|
||||||
'name' => 'admin_user_scope_history',
|
'name' => 'admin_user_scope_history',
|
||||||
'base_path' => '/admin/main/user-scope-history',
|
'base_path' => '/admin/main/user-scope-history',
|
||||||
'base_role' => 'ROLE_ADMIN',
|
'base_role' => 'ROLE_ADMIN',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user