Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4689 efrain 1
<?php
2
declare(strict_types=1);
3
 
4
namespace LeadersLinked\Mapper;
5
 
6
 
7
use LeadersLinked\Mapper\Common\MapperCommon;
8
use Laminas\Db\Adapter\AdapterInterface;
9
use LeadersLinked\Model\MyCoachCategoryEditor;
4712 efrain 10
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
4689 efrain 11
 
12
 
13
class MyCoachCategoryEditorMapper extends MapperCommon
14
{
15
    const _TABLE = 'tbl_my_coach_category_editors';
16
 
17
    /**
18
     *
19
     * @var MyCoachCategoryEditorMapper
20
     */
21
    private static $_instance;
22
 
23
    /**
24
     *
25
     * @param AdapterInterface $adapter
26
     */
27
    private function __construct($adapter)
28
    {
29
        parent::__construct($adapter);
30
    }
31
 
32
    /**
33
     *
34
     * @param AdapterInterface $adapter
35
     * @return MyCoachCategoryEditorMapper
36
     */
37
    public static function getInstance($adapter)
38
    {
39
        if(self::$_instance == null) {
40
            self::$_instance = new MyCoachCategoryEditorMapper($adapter);
41
        }
42
        return self::$_instance;
43
    }
44
 
45
    /**
46
     *
47
     * @param int $category_id
48
     * @param int $user_id
49
     * @return MyCoachCategoryEditor
50
     */
51
    public function fetchOneByCategoryIdAndUserId($category_id, $user_id)
52
    {
53
 
54
        $select = $this->sql->select(self::_TABLE);
55
        $select->where->equalTo('category_id', $category_id);
56
        $select->where->equalTo('user_id', $user_id);
57
 
58
        $prototype = new MyCoachCategoryEditor();
59
        return $this->executeFetchOneObject($select, $prototype);
60
    }
61
 
62
 
63
 
64
 
65
 
66
 
67
    /**
68
     *
69
     * @param
70
     * @return MyCoachCategoryEditor[]
71
     */
72
    public function fetchAllByCategoryId($category_id)
73
    {
74
 
75
        $select = $this->sql->select(self::_TABLE);
76
        $select->where->equalTo('category_id', $category_id);
77
 
78
 
79
        $prototype = new MyCoachCategoryEditor();
80
        return $this->executeFetchAllObject($select, $prototype);
81
    }
82
 
83
    /**
84
     *
85
     * @param int $category_id
86
     * @return boolean
87
     */
4712 efrain 88
    public function deleteAllByCategoryId($category_id)
4689 efrain 89
    {
90
        $delete = $this->sql->delete(self::_TABLE);
91
        $delete->where->equalTo('category_id', $category_id);
92
 
93
        return $this->executeDelete($delete);
94
    }
95
 
4712 efrain 96
 
97
    /**
98
     *
99
     * @param MyCoachCategoryEditor $record
100
     * @return boolean
101
     */
102
    public function insert($record) {
103
        $hydrator = new ObjectPropertyHydrator();
104
        $values = $hydrator->extract($record);
105
        $values = $this->removeEmpty($values);
106
 
107
        $insert = $this->sql->insert(self::_TABLE);
108
        $insert->values($values);
109
 
110
 
111
       return $this->executeInsert($insert);
112
    }
113
 
4689 efrain 114
}