Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1530 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1530 Rev 3471
Línea 3... Línea 3...
3
 
3
 
Línea 4... Línea 4...
4
namespace LeadersLinked\Mapper;
4
namespace LeadersLinked\Mapper;
5
 
5
 
6
use LeadersLinked\Mapper\Common\MapperCommon;
-
 
7
use Laminas\Db\Adapter\AdapterInterface;
6
use LeadersLinked\Mapper\Common\MapperCommon;
8
use LeadersLinked\Model\Survey;
-
 
9
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
-
 
10
use Laminas\Paginator\Paginator;
-
 
11
use Laminas\Db\ResultSet\HydratingResultSet;
7
use Laminas\Db\Adapter\AdapterInterface;
Línea 12... Línea 8...
12
use Laminas\Paginator\Adapter\DbSelect;
8
use LeadersLinked\Hydrator\ObjectPropertyHydrator;
13
use LeadersLinked\Model\SurveyLocation;
9
use LeadersLinked\Model\SurveyLocation;
Línea 46... Línea 42...
46
    }
42
    }
Línea 47... Línea 43...
47
    
43
    
48
    /**
44
    /**
49
     * 
45
     * 
50
     * @param int $id
46
     * @param int $id
51
     * @return Survey
47
     * @return SurveyLocation
52
     */
48
     */
53
    public function fetchOne($id)
49
    public function fetchOne($id)
54
    {
50
    {
Línea 55... Línea 51...
55
        $prototype = new Survey();
51
        $prototype = new SurveyLocation();
56
        
52
        
Línea 57... Línea 53...
57
        $select = $this->sql->select(self::_TABLE);
53
        $select = $this->sql->select(self::_TABLE);
Línea 62... Línea 58...
62
    
58
    
63
    
59
    
64
    /**
60
    /**
65
     *
61
     *
66
     * @param int $uuid
62
     * @param int $uuid
67
     * @return Survey
63
     * @return SurveyLocation
68
     */
64
     */
69
    public function fetchOneByUuid($uuid)
65
    public function fetchOneByUuid($uuid)
70
    {
66
    {
71
        $prototype = new Survey();
67
        $prototype = new SurveyLocation();
Línea 72... Línea 68...
72
        $select = $this->sql->select(self::_TABLE);
68
        $select = $this->sql->select(self::_TABLE);
73
        $select->where->equalTo('uuid', $uuid);
69
        $select->where->equalTo('uuid', $uuid);
Línea 74... Línea 70...
74
        
70
        
75
        return $this->executeFetchOneObject($select, $prototype);
71
        return $this->executeFetchOneObject($select, $prototype);
76
    }
72
    }
77
   
73
   
78
    
74
    
79
    /**
75
    /**
80
     *
76
     *
81
     * @param int $survey_id
77
     * @param int $survey_id
Línea 82... Línea 78...
82
     * @return Survey
78
     * @return SurveyLocation
83
     */
79
     */
Línea 93... Línea 89...
93
    }
89
    }
Línea 94... Línea 90...
94
    
90
    
95
    
91
    
96
    /**
92
    /**
97
     * 
93
     * 
98
     * @param SurveyForm $form
94
     * @param SurveyLocation $location
99
     * @return boolean
95
     * @return boolean
100
     */
96
     */
101
    public function insert($form)
97
    public function insert($location)
102
    {
98
    {
103
        $hydrator = new ObjectPropertyHydrator();
99
        $hydrator = new ObjectPropertyHydrator();
Línea 104... Línea 100...
104
        $values = $hydrator->extract($form);
100
        $values = $hydrator->extract($location);
105
        $values = $this->removeEmpty($values);
101
        $values = $this->removeEmpty($values);
Línea 106... Línea 102...
106
        
102
        
Línea 107... Línea 103...
107
        $insert = $this->sql->insert(self::_TABLE);
103
        $insert = $this->sql->insert(self::_TABLE);
108
        $insert->values($values);
104
        $insert->values($values);
109
        
105
        
110
       // echo $insert->getSqlString($this->adapter->platform); exit;
106
       // echo $insert->getSqlString($this->adapter->platform); exit;
111
 
107
 
112
        $result = $this->executeInsert($insert);
108
        $result = $this->executeInsert($insert);
Línea 113... Línea 109...
113
        if($result) {
109
        if($result) {
114
            $form->id = $this->lastInsertId;
110
            $location->id = $this->lastInsertId;
115
        }
111
        }
116
        return $result;
112
        return $result;
117
    }
113
    }
118
    
114
    
119
    /**
115
    /**
120
     *
116
     *
121
     * @param SurveyForm $form
117
     * @param SurveyLocation $location
122
     * @return boolean
118
     * @return boolean
Línea 123... Línea 119...
123
     */
119
     */
124
    public function update($form)
120
    public function update($location)
125
    {
121
    {
Línea 126... Línea 122...
126
        $hydrator = new ObjectPropertyHydrator();
122
        $hydrator = new ObjectPropertyHydrator();
127
        $values = $hydrator->extract($form);
123
        $values = $hydrator->extract($location);
Línea 128... Línea 124...
128
        $values = $this->removeEmpty($values);
124
        $values = $this->removeEmpty($values);
129
        
125
        
130
        $update = $this->sql->update(self::_TABLE);
126
        $update = $this->sql->update(self::_TABLE);
131
        $update->set($values);
127
        $update->set($values);
132
        $update->where->equalTo('id', $form->id);
128
        $update->where->equalTo('id', $location->id);
133
        
129
        
134
        return $this->executeUpdate($update); 
130
        return $this->executeUpdate($update); 
135
    }
131
    }
136
    
132
    
Línea 137... Línea 133...
137
    /**
133
    /**