Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16769 Rev 16785
Línea 152... Línea 152...
152
                        'total' => $paginator->getTotalItemCount(),
152
                        'total' => $paginator->getTotalItemCount(),
153
                    ]
153
                    ]
154
                ]);
154
                ]);
155
            } else {
155
            } else {
Línea 156... Línea 156...
156
 
156
 
Línea 157... Línea 157...
157
                $form = new SelfEvaluationFormForm();
157
                $form = new SelfEvaluationFormForm($this->adapter, $currentUser->id);
158
 
158
 
159
                $this->layout()->setTemplate('layout/layout-backend');
159
                $this->layout()->setTemplate('layout/layout-backend');
160
                $viewModel = new ViewModel();
160
                $viewModel = new ViewModel();
Línea 179... Línea 179...
179
 
179
 
Línea 180... Línea 180...
180
        $request = $this->getRequest();
180
        $request = $this->getRequest();
181
 
181
 
182
 
182
 
183
        if ($request->isPost()) {
183
        if ($request->isPost()) {
Línea 184... Línea 184...
184
            $form = new SelfEvaluationFormForm();
184
            $form = new SelfEvaluationFormForm($this->adapter, $currentUser->id);
Línea 255... Línea 255...
255
        }
255
        }
Línea 256... Línea 256...
256
 
256
 
257
        return new JsonModel($data);
257
        return new JsonModel($data);
Línea 258... Línea 258...
258
    }
258
    }
-
 
259
 
259
 
260
    public function editAction() 
260
    public function editAction() {
261
    {
261
        $request = $this->getRequest();
262
        $request = $this->getRequest();
262
        $currentUserPlugin = $this->plugin('currentUserPlugin');
263
        $currentUserPlugin = $this->plugin('currentUserPlugin');
Línea 294... Línea 295...
294
            ]);
295
            ]);
295
        }
296
        }
Línea 296... Línea 297...
296
 
297
 
297
 
298
 
298
        if ($request->isPost()) {
299
        if ($request->isPost()) {
299
            $form = new SelfEvaluationFormForm();
300
            $form = new SelfEvaluationFormForm($this->adapter, $currentUser->id);
Línea 300... Línea 301...
300
            $dataPost = $request->getPost()->toArray();
301
            $dataPost = $request->getPost()->toArray();