Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1 | Rev 4131 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 3099
Línea 115... Línea 115...
115
        }
115
        }
Línea 116... Línea 116...
116
        
116
        
117
        
117
        
-
 
118
        return $result;
-
 
119
    }
-
 
120
    
-
 
121
    /**
-
 
122
     *
-
 
123
     * @param int $id
-
 
124
     * @return boolean
-
 
125
     */
-
 
126
    public function markIsOpen1($id)
-
 
127
    {
-
 
128
        $update = $this->sql->update(self::_TABLE);
-
 
129
        $update->set(['user_open1' => ChatUser::OPEN_YES]);
-
 
130
        $update->where->equalTo('id', $id);
-
 
131
        
-
 
132
        return $this->executeUpdate($update);
-
 
133
    }
-
 
134
    
-
 
135
    
-
 
136
    /**
-
 
137
     *
-
 
138
     * @param int $id
-
 
139
     * @return boolean
-
 
140
     */
-
 
141
    public function markIsOpen2($id)
-
 
142
    {
-
 
143
        $update = $this->sql->update(self::_TABLE);
-
 
144
        $update->set(['user_open2' => ChatUser::OPEN_YES]);
-
 
145
        $update->where->equalTo('id', $id);
-
 
146
        
-
 
147
        return $this->executeUpdate($update);
-
 
148
    }
-
 
149
    
-
 
150
    /**
-
 
151
     *
-
 
152
     * @param int $id
-
 
153
     * @return boolean
-
 
154
     */
-
 
155
    public function markIsClose1($id)
-
 
156
    {
-
 
157
        $update = $this->sql->update(self::_TABLE);
-
 
158
        $update->set(['user_open1' => ChatUser::OPEN_NO]);
-
 
159
        $update->where->equalTo('id', $id);
-
 
160
        
-
 
161
        return $this->executeUpdate($update);
-
 
162
    }
-
 
163
    
-
 
164
    
-
 
165
    /**
-
 
166
     *
-
 
167
     * @param int $id
-
 
168
     * @return boolean
-
 
169
     */
-
 
170
    public function markIsClose2($id)
-
 
171
    {
-
 
172
        $update = $this->sql->update(self::_TABLE);
-
 
173
        $update->set(['user_open2' => ChatUser::OPEN_NO]);
-
 
174
        $update->where->equalTo('id', $id);
-
 
175
        
-
 
176
        return $this->executeUpdate($update);
-
 
177
    }
118
        return $result;
178
    
119
    }
179