Here are my solutions:
PHP Code:
62 $projects = $this->getEntityManager()->getRepository('Project')
63 ->where(array( 'id =' => array_keys($projectIds)))->find();
74 $events = $this->getEntityManager()->getRepository('Event')
75 ->where(array(
76 'date >=' => $timesheet['dateStart'],
77 'date <=' => $timesheet['dateEnd'],
78 'type *' => '%Holiday%'
79 ))->find();

Leave a comment: