Revert "calendar bug fix 2" since with incorrect author
[openemr.git] / repositories / ProductRegistrationRepository.php
blobb97ef9c47f1ad974699ff9d241c82d23ebfc1fc0
1 <?php
2 /**
3 * Product registration repository.
5 * Copyright (C) 2016 sherwin gaddis <sherwin@openmedpractice.com>
7 * LICENSE: This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;.
18 * @package OpenEMR
19 * @author sherwin gaddis <sherwin@openmedpractice.com>
20 * @link http://www.openmedpractice.com
23 namespace repositories;
25 use entities\ProductRegistration;
26 use Doctrine\ORM\EntityRepository;
28 class ProductRegistrationRepository extends EntityRepository {
29 /**
30 * Finds the sole product registration entry in the database.
32 * @return product registration entry.
34 public function findFirst() {
35 $results = $this->_em->getRepository($this->_entityName)->findAll();
36 if (!empty($results)) {
37 return $results[0];
40 return null;
43 /**
44 * Add product registration entry.
46 * @param $registration registration information.
47 * @return the id.
49 public function save(\entities\ProductRegistration $entry) {
50 $this->_em->persist($entry);
51 $this->_em->flush();
52 return $entry->getRegistrationId();