Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 7306 Rev 7834
Línea 147... Línea 147...
147
                    $item = [
147
                    $item = [
148
                        'title' => $record->title,
148
                        'title' => $record->title,
149
                        'description' => $record->description,
149
                        'description' => $record->description,
150
                        'status'=> $record->status,
150
                        'status'=> $record->status,
151
                        'actions' => [
151
                        'actions' => [
152
                            'link_edit' => $allowEdit ? $this->url()->fromRoute('high-performance-teams/groups/edit', ['id' => $record->uuid]) : '',
152
                            'link_edit' => $allowEdit ? $this->url()->fromRoute('high-performance-teams/groups/edit', ['group_uuid' => $record->uuid]) : '',
153
                            'link_delete' => $allowDelete ? $this->url()->fromRoute('high-performance-teams/groups/delete', ['id' => $record->uuid]) : '',
153
                            'link_delete' => $allowDelete ? $this->url()->fromRoute('high-performance-teams/groups/delete', ['group_uuid' => $record->uuid]) : '',
154
                            'link_view' => $allowView ? $this->url()->fromRoute('high-performance-teams/groups/view', ['id' => $record->uuid]) : '',
154
                            'link_view' => $allowView ? $this->url()->fromRoute('high-performance-teams/groups/view', ['group_uuid' => $record->uuid]) : '',
155
                        ]
155
                        ]
Línea 156... Línea 156...
156
 
156
 
Línea 157... Línea 157...
157
                    ];
157
                    ];
Línea 302... Línea 302...
302
 
302
 
303
        $currentUserPlugin = $this->plugin('currentUserPlugin');
303
        $currentUserPlugin = $this->plugin('currentUserPlugin');
304
        $currentUser = $currentUserPlugin->getUser();
304
        $currentUser = $currentUserPlugin->getUser();
305
        $currentCompany = $currentUserPlugin->getCompany();
305
        $currentCompany = $currentUserPlugin->getCompany();
306
        $request = $this->getRequest();
306
        $request = $this->getRequest();
Línea 307... Línea 307...
307
        $uuid = $this->params()->fromRoute('id');
307
        $uuid = $this->params()->fromRoute('group_uuid');
308
 
308
 
309
        
309
        
Línea 406... Línea 406...
406
        $currentUserPlugin = $this->plugin('currentUserPlugin');
406
        $currentUserPlugin = $this->plugin('currentUserPlugin');
407
        $currentCompany = $currentUserPlugin->getCompany();
407
        $currentCompany = $currentUserPlugin->getCompany();
408
        $currentUser = $currentUserPlugin->getUser();
408
        $currentUser = $currentUserPlugin->getUser();
Línea 409... Línea 409...
409
 
409
 
410
        $request = $this->getRequest();
410
        $request = $this->getRequest();
Línea 411... Línea 411...
411
        $uuid = $this->params()->fromRoute('id');
411
        $uuid = $this->params()->fromRoute('group_uuid');
412
        
412
        
413
 
413