adding an order on person list widget

This commit is contained in:
Julien Fastré 2016-10-13 22:39:56 +02:00
parent 89aa9a0fb4
commit 771fa68c2f

View File

@ -138,6 +138,10 @@ class PersonListWidget implements WidgetInterface
// adding the where clause to the query
$qb->where($and);
// ordering the query by lastname, firstname
$qb->addOrderBy('person.lastName', 'ASC')
->addOrderBy('person.firstName', 'ASC');
$qb->setFirstResult(0)->setMaxResults($config['number_of_items']);