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