Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
236 efrain 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Mapper;
5
 
6
use LeadersLinked\Mapper\Common\MapperCommon;
7
use Laminas\Db\Adapter\AdapterInterface;
8
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
9
use Laminas\Paginator\Paginator;
10
use Laminas\Db\ResultSet\HydratingResultSet;
11
use Laminas\Paginator\Adapter\DbSelect;
12
use LeadersLinked\Model\CompanySelfEvaluationTest;
13
 
14
 
15
class CompanySelfEvaluationTestMapper extends MapperCommon
16
{
17
    const _TABLE = 'tbl_company_self_evaluation_tests';
18
 
19
    /**
20
     *
21
     * @var CompanySelfEvaluationTestMapper
22
     */
23
    private static $_instance;
24
 
25
    /**
26
     *
27
     * @param AdapterInterface $adapter
28
     */
29
    private function __construct($adapter)
30
    {
31
        parent::__construct($adapter);
32
    }
33
 
34
    /**
35
     *
36
     * @param AdapterInterface $adapter
37
     * @return CompanySelfEvaluationTestMapper
38
     */
39
    public static function getInstance($adapter)
40
    {
41
        if(self::$_instance == null) {
42
            self::$_instance = new CompanySelfEvaluationTestMapper($adapter);
43
        }
44
        return self::$_instance;
45
    }
46
 
47
    /**
48
     *
49
     * @param int $id
50
     * @return CompanySelfEvaluationTest
51
     */
52
    public function fetchOne($id)
53
    {
54
        $prototype = new CompanySelfEvaluationTest();
55
 
56
        $select = $this->sql->select(self::_TABLE);
57
        $select->where->equalTo('id', $id);
58
 
59
        return $this->executeFetchOneObject($select, $prototype);
60
    }
61
 
62
 
63
    /**
64
     *
65
     * @param int $uuid
66
     * @return CompanySelfEvaluationTest
67
     */
68
    public function fetchOneByUuid($uuid)
69
    {
70
        $prototype = new CompanySelfEvaluationTest();
71
        $select = $this->sql->select(self::_TABLE);
72
        $select->where->equalTo('uuid', $uuid);
73
 
74
        return $this->executeFetchOneObject($select, $prototype);
75
    }
76
 
77
 
78
    /**
79
     *
80
     * @param CompanySelfEvaluationTest $form
81
     * @return boolean
82
     */
83
    public function insert($form)
84
    {
85
        $hydrator = new ObjectPropertyHydrator();
86
        $values = $hydrator->extract($form);
87
        $values = $this->removeEmpty($values);
88
 
89
        $insert = $this->sql->insert(self::_TABLE);
90
        $insert->values($values);
91
 
92
        $result = $this->executeInsert($insert);
93
        if($result) {
94
            $form->id = $this->lastInsertId;
95
        }
96
        return $result;
97
    }
98
 
99
    /**
100
     *
101
     * @param CompanySelfEvaluationTest $form
102
     * @return boolean
103
     */
104
    public function update($form)
105
    {
106
        $hydrator = new ObjectPropertyHydrator();
107
        $values = $hydrator->extract($form);
108
        $values = $this->removeEmpty($values);
109
 
110
        $update = $this->sql->update(self::_TABLE);
111
        $update->set($values);
112
        $update->where->equalTo('id', $form->id);
113
 
114
        return $this->executeUpdate($update);
115
    }
116
 
117
    /**
118
     *
119
     * @param CompanySelfEvaluationTest $form
120
     * @return boolean
121
     */
122
    public function delete($form)
123
    {
124
        $delete = $this->sql->delete(self::_TABLE);
125
        $delete->where->equalTo('id', $form->id);
126
 
127
        return $this->executeDelete($delete);
128
    }
129
 
130
 
131
 
132
 
133
 
134
 
135
}