Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 10383 Rev 11086
Línea 107... Línea 107...
107
                }
107
                }
108
            }
108
            }
Línea 109... Línea 109...
109
            
109
            
Línea 110... Línea 110...
110
            if($isJson) {
110
            if($isJson) {
111
                
111
                
112
                $group_uuid = $this->params()->fromRoute('group_uuid');
112
                $group_uuid = $this->params()->fromRoute('group_id');
113
                if(!$group_uuid) {
113
                if(!$group_uuid) {
114
                    $data = [
114
                    $data = [
115
                        'success'   => false,
115
                        'success'   => false,
Línea 183... Línea 183...
183
                  
183
                  
184
                    $item = [
184
                    $item = [
185
                        'title' => $record->title,
185
                        'title' => $record->title,
186
                        'status'=> $record->status,
186
                        'status'=> $record->status,
187
                        'actions' => [
187
                        'actions' => [
188
                            'link_edit' => $allowEdit ? $this->url()->fromRoute('high-performance-teams/groups/view/topic/edit', ['group_uuid' => $highPerformanceTeamsGroups->uuid, 'topic_uuid' => $record->uuid]) : '',
188
                            'link_edit' => $allowEdit ? $this->url()->fromRoute('high-performance-teams/groups/view/topic/edit', ['group_id' => $highPerformanceTeamsGroups->uuid, 'topic_id' => $record->uuid]) : '',
189
                            'link_delete' => $allowDelete ? $this->url()->fromRoute('high-performance-teams/groups/view/topic/delete', ['group_uuid' => $highPerformanceTeamsGroups->uuid,'topic_uuid' => $record->uuid]) : '',
189
                            'link_delete' => $allowDelete ? $this->url()->fromRoute('high-performance-teams/groups/view/topic/delete', ['group_id' => $highPerformanceTeamsGroups->uuid,'topic_id' => $record->uuid]) : '',
190
                            'link_view' => $allowView ? $this->url()->fromRoute('high-performance-teams/groups/view/topic/view', ['group_uuid' => $highPerformanceTeamsGroups->uuid,'topic_uuid' => $record->uuid]) : '',
190
                            'link_view' => $allowView ? $this->url()->fromRoute('high-performance-teams/groups/view/topic/view', ['group_id' => $highPerformanceTeamsGroups->uuid,'topic_id' => $record->uuid]) : '',
Línea 191... Línea 191...
191
                        ]
191
                        ]
Línea 192... Línea 192...
192
 
192
 
Línea 213... Línea 213...
213
    }
213
    }
Línea 214... Línea 214...
214
 
214
 
215
    public function addAction()
215
    public function addAction()
Línea 216... Línea 216...
216
    {
216
    {
217
 
217
 
218
        $group_uuid = $this->params()->fromRoute('group_uuid');
218
        $group_uuid = $this->params()->fromRoute('group_id');
219
        if(!$group_uuid) {
219
        if(!$group_uuid) {
220
            $data = [
220
            $data = [
221
                'success'   => false,
221
                'success'   => false,
Línea 340... Línea 340...
340
 
340
 
341
        $currentUserPlugin = $this->plugin('currentUserPlugin');
341
        $currentUserPlugin = $this->plugin('currentUserPlugin');
342
        $currentUser = $currentUserPlugin->getUser();
342
        $currentUser = $currentUserPlugin->getUser();
343
        $currentCompany = $currentUserPlugin->getCompany();
343
        $currentCompany = $currentUserPlugin->getCompany();
344
        $request = $this->getRequest();
344
        $request = $this->getRequest();
Línea 345... Línea 345...
345
        $group_uuid = $this->params()->fromRoute('group_uuid');
345
        $group_uuid = $this->params()->fromRoute('group_id');
Línea 346... Línea 346...
346
        
346
        
347
        $topic_uuid = $this->params()->fromRoute('topic_uuid');
347
        $topic_uuid = $this->params()->fromRoute('topic_id');
348
 
348
 
Línea 496... Línea 496...
496
        $currentUserPlugin = $this->plugin('currentUserPlugin');
496
        $currentUserPlugin = $this->plugin('currentUserPlugin');
497
        $currentCompany = $currentUserPlugin->getCompany();
497
        $currentCompany = $currentUserPlugin->getCompany();
498
        $currentUser = $currentUserPlugin->getUser();
498
        $currentUser = $currentUserPlugin->getUser();
Línea 499... Línea 499...
499
 
499
 
500
        $request = $this->getRequest();
500
        $request = $this->getRequest();
501
        $group_uuid = $this->params()->fromRoute('group_uuid');
501
        $group_uuid = $this->params()->fromRoute('group_id');
Línea 502... Línea 502...
502
        $topic_uuid = $this->params()->fromRoute('topic_uuid');
502
        $topic_uuid = $this->params()->fromRoute('topic_id');
503
        
503
        
504
 
504