Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 9933 Rev 10121
Línea 80... Línea 80...
80
        $currentCompany = $currentUserPlugin->getCompany();
80
        $currentCompany = $currentUserPlugin->getCompany();
81
        $group_uuid =  $this->params()->fromRoute('group_uuid');
81
        $group_uuid =  $this->params()->fromRoute('group_uuid');
82
        $category_uuid =  $this->params()->fromRoute('category_uuid');
82
        $category_uuid =  $this->params()->fromRoute('category_uuid');
83
        $article_uuid =  $this->params()->fromRoute('article_uuid');
83
        $article_uuid =  $this->params()->fromRoute('article_uuid');
84
        $request = $this->getRequest();
84
        $request = $this->getRequest();
85
        
85
 
86
        if(!$group_uuid) {
86
        if(!$group_uuid) {
87
            $data = [
87
            $data = [
88
                'success'   => false,
88
                'success'   => false,
89
                'data'   => 'ERROR_INVALID_PARAMETER'
89
                'data'   => 'ERROR_INVALID_PARAMETER'
90
            ];
90
            ];
Línea 137... Línea 137...
137
            $viewModel->setVariables([
137
            $viewModel->setVariables([
138
                'formAdd' => $formAdd,  
138
                'formAdd' => $formAdd,  
139
                'group_uuid'=>$group_uuid,
139
                'group_uuid'=>$group_uuid,
140
                'group_title'=>$highPerformanceTeamsGroups->title,
140
                'group_title'=>$highPerformanceTeamsGroups->title,
141
                'group_description'=>$highPerformanceTeamsGroups->description,  
141
                'group_description'=>$highPerformanceTeamsGroups->description,  
142
                'category_uuid'=>$category_uuid            
142
                'category_uuid'=>$category_uuid,
-
 
143
                'article_uuid'=>$article_uuid         
143
            ]);
144
            ]);
144
            return $viewModel ;
145
            return $viewModel ;
Línea 145... Línea 146...
145
            
146