Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16325 Rev 16701
Línea 146... Línea 146...
146
                    
146
                    
147
                    
147
                    
148
                    $item = [
148
                    $item = [
149
                        'id' => $record->id,
-
 
150
                        'name' => $record->name,
149
                        'id' => $record->id,
151
                        'description' => $record->description,
150
                        'name' => $record->name,
152
                        'status' => $record->status,
151
                        'status' => $record->status,
153
                        'privacy' => $privacy,
152
                        'privacy' => $privacy,
154
                        'actions' => [
153
                        'actions' => [
Línea 187... Línea 186...
187
        }
186
        }
Línea 188... Línea 187...
188
 
187
 
Línea 189... Línea 188...
189
    }
188
    }
190
 
189
 
-
 
190
    public function addAction() 
-
 
191
    {         
-
 
192
        
-
 
193
        $currentNetworkPlugin  = $this->plugin('currentNetworkPlugin');
-
 
194
        $currentNetwork        = $currentNetworkPlugin->getNetwork();
191
    public function addAction() 
195
        
192
    { 
196
        
193
        $currentUserPlugin  = $this->plugin('currentUserPlugin');
197
        $currentUserPlugin  = $this->plugin('currentUserPlugin');
194
        $currentCompany     = $currentUserPlugin->getCompany(); 
198
        $currentCompany     = $currentUserPlugin->getCompany(); 
Línea 210... Línea 214...
210
                $dataPost = (array) $form->getData();
214
                $dataPost = (array) $form->getData();
211
                $hydrator = new ObjectPropertyHydrator();
215
                $hydrator = new ObjectPropertyHydrator();
212
                $hydrator->hydrate($dataPost, $category);
216
                $hydrator->hydrate($dataPost, $category);
Línea 213... Línea 217...
213
                
217
                
-
 
218
                $category->company_id = $currentCompany->id;
Línea 214... Línea 219...
214
                $category->company_id = $currentCompany->id;
219
                $category->network_id = $currentNetwork->id;
Línea 215... Línea 220...
215
                
220
                
Línea 355... Línea 360...
355
 
360
 
356
            $data = [
361
            $data = [
357
                'success' => true,
362
                'success' => true,
358
                'data' => [
363
                'data' => [
359
                    'name' => $category->name,
-
 
360
                    'description' => $category->description,
364
                    'name' => $category->name,
361
                    'status' => $category->status,
365
                    'status' => $category->status,
362
                    'privacy' => $category->privacy,
366
                    'privacy' => $category->privacy,
363
                ]
367
                ]