add settings panel
Signed-off-by: Simon Vieille <simon@deblan.fr>
This commit is contained in:
parent
46679ec638
commit
aafa87ed41
17 changed files with 569 additions and 1 deletions
18
core/Repository/SettingRepositoryQuery.php
Normal file
18
core/Repository/SettingRepositoryQuery.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
namespace App\Core\Repository;
|
||||
|
||||
use Knp\Component\Pager\PaginatorInterface;
|
||||
|
||||
/**
|
||||
* class SettingRepositoryQuery.
|
||||
*
|
||||
* @author Simon Vieille <simon@deblan.fr>
|
||||
*/
|
||||
class SettingRepositoryQuery extends RepositoryQuery
|
||||
{
|
||||
public function __construct(SettingRepository $repository, PaginatorInterface $paginator)
|
||||
{
|
||||
parent::__construct($repository, 's', $paginator);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue