Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
jdev
jdev-boarding
Commits
2d12c012
Commit
2d12c012
authored
Feb 12, 2020
by
Chrystel Moreau
Browse files
add order by pour les organismes
parent
3fd199ca
Pipeline
#1997
passed with stages
in 2 minutes and 8 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/src/Action/InscriptionAction.php
View file @
2d12c012
...
...
@@ -40,7 +40,8 @@ final class InscriptionAction
if
(
$request
->
isGet
())
{
$organismesRepository
=
$this
->
em
->
getRepository
(
'App\Entity\Organisme'
);
$organismes
=
$organismesRepository
->
findAll
();
//$organismes = $organismesRepository->findAll(array('order'=>'label ASC'));
$organismes
=
$organismesRepository
->
findBy
(
array
(),
array
(
'label'
=>
'ASC'
));
$reseauxRepository
=
$this
->
em
->
getRepository
(
'App\Entity\Reseau'
);
$reseaux1
=
$reseauxRepository
->
findBy
(
array
(
'display'
=>
1
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment