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\CompanySelfEvaluationQuestion;
9
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
10
 
11
 
12
class CompanySelfEvaluationQuestionMapper extends MapperCommon
13
{
14
    const _TABLE = 'tbl_company_self_evaluation_form_questions';
15
 
16
    /**
17
     *
18
     * @var CompanySelfEvaluationQuestionMapper
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 CompanySelfEvaluationQuestionMapper
35
     */
36
    public static function getInstance($adapter)
37
    {
38
        if(self::$_instance == null) {
39
            self::$_instance = new CompanySelfEvaluationQuestionMapper($adapter);
40
        }
41
        return self::$_instance;
42
    }
43
 
44
    /**
45
     *
46
     * @param int $id
47
     * @return CompanySelfEvaluationQuestion
48
     */
49
    public function fetchOne($id)
50
    {
51
        $prototype = new CompanySelfEvaluationQuestion();
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 CompanySelfEvaluationQuestion
63
     */
64
    public function fetchOneByUuid($uuid)
65
    {
66
        $prototype = new CompanySelfEvaluationQuestion;
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
     * @return CompanySelfEvaluationQuestion[]
78
     */
79
    public function fetchAllByFormIdAndSectionId($form_id, $section_id)
80
    {
81
        $prototype = new CompanySelfEvaluationQuestion();
82
 
83
        $select = $this->sql->select(self::_TABLE);
84
        $select->where->equalTo('form_id', $form_id);
85
        $select->where->equalTo('section_id', $section_id);
86
 
87
        return $this->executeFetchAllObject($select, $prototype);
88
    }
89
 
90
 
91
    /**
92
     *
93
     * @param CompanySelfEvaluationQuestion $question
94
     * @return boolean
95
     */
96
    public function insert($question)
97
    {
98
        $hydrator = new ObjectPropertyHydrator();
99
        $values = $hydrator->extract($question);
100
        $values = $this->removeEmpty($values);
101
        $values['maxlength'] = $question->maxlength ? $question->maxlength : 0;
102
 
103
        $insert = $this->sql->insert(self::_TABLE);
104
        $insert->values($values);
105
 
106
 
107
        $result = $this->executeInsert($insert);
108
        if($result) {
109
            $question->id = $this->lastInsertId;
110
        }
111
        return $result;
112
    }
113
 
114
    /**
115
     *
116
     * @param CompanySelfEvaluationQuestion $question
117
     * @return boolean
118
     */
119
    public function update($question)
120
    {
121
        $hydrator = new ObjectPropertyHydrator();
122
        $values = $hydrator->extract($question);
123
        $values = $this->removeEmpty($values);
124
        $values['maxlength'] = $question->maxlength ? $question->maxlength : 0;
125
 
126
        $update = $this->sql->update(self::_TABLE);
127
        $update->set($values);
128
        $update->where->equalTo('id', $question->id);
129
 
130
       // echo $update->getSqlString($this->adapter->platform); exit;
131
 
132
        return $this->executeUpdate($update);
133
    }
134
 
135
    /**
136
     *
137
     * @param CompanySelfEvaluationQuestion $question
138
     * @return boolean
139
     */
140
    public function delete($question)
141
    {
142
        $delete = $this->sql->delete(self::_TABLE);
143
        $delete->where->equalTo('id', $question->id);
144
 
145
        return $this->executeDelete($delete);
146
    }
147
 
148
 
149
}