- <?php
- class Application_Service_Website
- {
- public function lookup()
- {
- $registry = Zend_Registry::getInstance();
- $this->em = $registry->entityManager;
- $qb = $this->em->createQueryBuilder();
- $qb->select('u')
- ->from('Application_Model_Product', 'u');
- $query = $qb->getQuery();
- $array = $query->getScalarResult();
- return $array;
- }
- }