Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
553 geraldo 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\CompanyPerformanceEvaluationTest;
13
 
14
 
15
class CompanyPerformanceEvaluationTestMapper extends MapperCommon
16
{
17
    const _TABLE = 'tbl_company_performance_evaluation_tests';
18
 
19
    /**
20
     *
21
     * @var CompanyPerformanceEvaluationTestMapper
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 CompanyPerformanceEvaluationTestMapper
38
     */
39
    public static function getInstance($adapter)
40
    {
41
        if(self::$_instance == null) {
42
            self::$_instance = new CompanyPerformanceEvaluationTestMapper($adapter);
43
        }
44
        return self::$_instance;
45
    }
46
 
47
    /**
48
     *
49
     * @param int $id
50
     * @return CompanyPerformanceEvaluationTest
51
     */
52
    public function fetchOne($id)
53
    {
54
        $prototype = new CompanyPerformanceEvaluationTest();
55
 
56
        $select = $this->sql->select(self::_TABLE);
57
        $select->where->equalTo('id', $id);
58
 
59
        return $this->executeFetchOneObject($select, $prototype);
60
    }
61
 
646 efrain 62
 
553 geraldo 63
 
64
 
65
    /**
66
     *
67
     * @param int $uuid
68
     * @return CompanyPerformanceEvaluationTest
69
     */
70
    public function fetchOneByUuid($uuid)
71
    {
72
        $prototype = new CompanyPerformanceEvaluationTest();
73
        $select = $this->sql->select(self::_TABLE);
74
        $select->where->equalTo('uuid', $uuid);
75
 
76
        return $this->executeFetchOneObject($select, $prototype);
77
    }
78
 
79
 
80
    /**
81
     *
646 efrain 82
     * @param CompanyPerformanceEvaluationTest $test
553 geraldo 83
     * @return boolean
84
     */
646 efrain 85
    public function insert($test)
553 geraldo 86
    {
87
        $hydrator = new ObjectPropertyHydrator();
646 efrain 88
        $values = $hydrator->extract($test);
553 geraldo 89
        $values = $this->removeEmpty($values);
90
 
91
        $insert = $this->sql->insert(self::_TABLE);
92
        $insert->values($values);
93
 
94
        $result = $this->executeInsert($insert);
95
        if($result) {
646 efrain 96
            $test->id = $this->lastInsertId;
553 geraldo 97
        }
98
        return $result;
99
    }
100
 
101
    /**
102
     *
646 efrain 103
     * @param CompanyPerformanceEvaluationTest $test
553 geraldo 104
     * @return boolean
105
     */
646 efrain 106
    public function update($test)
553 geraldo 107
    {
108
        $hydrator = new ObjectPropertyHydrator();
646 efrain 109
        $values = $hydrator->extract($test);
553 geraldo 110
        $values = $this->removeEmpty($values);
111
 
112
        $update = $this->sql->update(self::_TABLE);
113
        $update->set($values);
646 efrain 114
        $update->where->equalTo('id', $test->id);
553 geraldo 115
 
116
        return $this->executeUpdate($update);
117
    }
2102 eleazar 118
 
553 geraldo 119
    /**
2102 eleazar 120
     *
121
     * @param int $test
553 geraldo 122
     * @return boolean
123
     */
646 efrain 124
    public function delete($test)
553 geraldo 125
    {
2102 eleazar 126
        $update = $this->sql->update(self::_TABLE);
127
        $update->set([
128
            'status' => CompanyPerformanceEvaluationTest::STATUS_DELETED
129
        ]);
130
        $update->where->equalTo('id', $test->id);
553 geraldo 131
 
2102 eleazar 132
        return $this->executeUpdate($update);
553 geraldo 133
    }
134
 
135
 
136
 
137
 
138
 
139
}