Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 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\Model\CompanySelfEvaluationAnswer;
9
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
10
 
11
 
12
class CompanySelfEvaluationAnswerMapper extends MapperCommon
13
{
14
    const _TABLE = 'tbl_company_self_evaluation_form_answers';
15
 
16
    /**
17
     *
18
     * @var CompanySelfEvaluationAnswerMapper
19
     */
20
    private static $_instance;
21
 
22
    /**
23
     *
24
     * @param AdapterInterface $adapter
25
     */
26
    private function __construct($adapter)
27
    {
28
        parent::__construct($adapter);
29
    }
30
 
31
    /**
32
     *
33
     * @param AdapterInterface $adapter
34
     * @return CompanySelfEvaluationAnswerMapper
35
     */
36
    public static function getInstance($adapter)
37
    {
38
        if(self::$_instance == null) {
39
            self::$_instance = new CompanySelfEvaluationAnswerMapper($adapter);
40
        }
41
        return self::$_instance;
42
    }
43
 
44
    /**
45
     *
46
     * @param int $id
47
     * @return CompanySelfEvaluationAnswer
48
     */
49
    public function fetchOne($id)
50
    {
51
        $prototype = new CompanySelfEvaluationAnswer();
52
 
53
        $select = $this->sql->select(self::_TABLE);
54
        $select->where->equalTo('id', $id);
55
 
56
        return $this->executeFetchOneObject($select, $prototype);
57
    }
58
 
59
    /**
60
     *
61
     * @param int $uuid
62
     * @return CompanySelfEvaluationAnswer
63
     */
64
    public function fetchOneByUuid($uuid)
65
    {
66
        $prototype = new CompanySelfEvaluationAnswer;
67
        $select = $this->sql->select(self::_TABLE);
68
        $select->where->equalTo('uuid', $uuid);
69
 
70
        return $this->executeFetchOneObject($select, $prototype);
71
    }
72
 
73
    /**
74
     *
75
     * @param int $form_id
76
     * @param int $section_id
77
     * @param int $question_id
78
     * @return CompanySelfEvaluationAnswer[]
79
     */
80
    public function fetchAllByFormIdAndSectionIdAndQuestionId($form_id, $section_id, $question_id)
81
    {
82
        $prototype = new CompanySelfEvaluationAnswer();
83
 
84
        $select = $this->sql->select(self::_TABLE);
85
        $select->where->equalTo('form_id', $form_id);
86
        $select->where->equalTo('section_id', $section_id);
87
        $select->where->equalTo('question_id', $question_id);
88
 
89
        return $this->executeFetchAllObject($select, $prototype);
90
    }
91
 
92
    /**
93
     *
94
     * @param CompanySelfEvaluationAnswer $answer
95
     * @return boolean
96
     */
97
    public function insert($answer)
98
    {
99
        $hydrator = new ObjectPropertyHydrator();
100
        $values = $hydrator->extract($answer);
101
        $values = $this->removeEmpty($values);
102
 
103
        $insert = $this->sql->insert(self::_TABLE);
104
        $insert->values($values);
105
 
106
        $result = $this->executeInsert($insert);
107
        if($result) {
108
            $answer->id = $this->lastInsertId;
109
        }
110
        return $result;
111
    }
112
 
113
    /**
114
     *
115
     * @param CompanySelfEvaluationAnswer $answer
116
     * @return boolean
117
     */
118
    public function update($answer)
119
    {
120
        $hydrator = new ObjectPropertyHydrator();
121
        $values = $hydrator->extract($answer);
122
        $values = $this->removeEmpty($values);
123
 
124
        $update = $this->sql->update(self::_TABLE);
125
        $update->set($values);
126
        $update->where->equalTo('id', $answer->id);
127
 
128
        return $this->executeUpdate($update);
129
    }
130
 
131
    /**
132
     *
133
     * @param CompanySelfEvaluationAnswer $answer
134
     * @return boolean
135
     */
136
    public function delete($answer)
137
    {
138
        $delete = $this->sql->delete(self::_TABLE);
139
        $delete->where->equalTo('id', $answer->id);
140
 
141
        return $this->executeDelete($delete);
142
    }
143
 
144
 
145
}