Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 15348 Rev 15458
Línea 89... Línea 89...
89
                    }
89
                    }
Línea 90... Línea 90...
90
                    
90
                    
91
                }
91
                }
Línea -... Línea 92...
-
 
92
            }
92
            }
93
            
93
            
94
     
94
            if($isJson) {
95
            if($isJson) {
Línea 95... Línea 96...
95
                $search = $this->params()->fromQuery('search', []);
96
                $search = $this->params()->fromQuery('search', []);
Línea 115... Línea 116...
115
                
116
                
116
                $items = [];
117
                $items = [];
117
                $records = $paginator->getCurrentItems();
118
                $records = $paginator->getCurrentItems();
118
                foreach($records as $record)
119
                foreach($records as $record)
-
 
120
                {
119
                {
121
 
120
                    $item = [
122
                    $item = [
121
                        'id' => $record->code,
123
                        'code' => $record->code,
122
                        'title' => $record->title,
124
                        'title' => $record->title,
123
                        'status' => $record->status,
125
                        'status' => $record->status,
124
                        'actions' => [
126
                        'actions' => [
125
                            'link_edit' => $this->url()->fromRoute('publications/pages/edit', ['id' => $record->id ]),
127
                            'link_edit' => $this->url()->fromRoute('publications/pages/edit', ['id' => $record->code ]),
126
                            'link_delete' => $record->fixed == Page::NO ? $this->url()->fromRoute('publications/pages/delete', ['id' => $record->id ]) : '',
128
                            'link_delete' => $record->fixed == Page::NO ? $this->url()->fromRoute('publications/pages/delete', ['id' => $record->code ]) : '',
127
                        ] 
129
                        ] 
Línea 128... Línea 130...
128
                    ];
130
                    ];
129
                    
131
                    
Línea 159... Línea 161...
159
    public function addAction()
161
    public function addAction()
160
    {
162
    {
161
        $currentUserPlugin = $this->plugin('currentUserPlugin');
163
        $currentUserPlugin = $this->plugin('currentUserPlugin');
162
        $currentUser = $currentUserPlugin->getUser();
164
        $currentUser = $currentUserPlugin->getUser();
Línea -... Línea 165...
-
 
165
        
-
 
166
        $currentNetworkPlugin = $this->plugin('currentNetworkPlugin');
-
 
167
        $currentNetwork = $currentNetworkPlugin->getNetwork();
163
        
168
        
Línea 164... Línea 169...
164
        $request = $this->getRequest();
169
        $request = $this->getRequest();
165
 
170
 
166
        if($request->isPost()) {
171
        if($request->isPost()) {
Línea 173... Línea 178...
173
            if($form->isValid()) {
178
            if($form->isValid()) {
174
                $dataPost = (array) $form->getData();
179
                $dataPost = (array) $form->getData();
Línea 175... Línea 180...
175
 
180
 
176
                $hydrator = new ObjectPropertyHydrator();
181
                $hydrator = new ObjectPropertyHydrator();
-
 
182
                $page = new Page();
-
 
183
                $page->network_id = $currentNetwork->id;
-
 
184
                $page->fixed = Page::NO;
177
                $page = new Page();
185
                
Línea 178... Línea 186...
178
                $hydrator->hydrate($dataPost, $page);
186
                $hydrator->hydrate($dataPost, $page);
Línea 261... Línea 269...
261
            
269
            
Línea 262... Línea 270...
262
            $form->setData($dataPost);
270
            $form->setData($dataPost);
263
            
271
            
264
            if($form->isValid()) {
-
 
-
 
272
            if($form->isValid()) {
Línea 265... Línea 273...
265
                $dataPost = (array) $form->getData();
273
                $dataPost = (array) $form->getData();
266
                unset($dataPost['id']);
274
 
Línea 299... Línea 307...
299
                    'success'   => false,
307
                    'success'   => false,
300
                    'data'   => $messages
308
                    'data'   => $messages
301
                ]);
309
                ]);
302
            }
310
            }
303
        } else if ($request->isGet()) {
311
        } else if ($request->isGet()) {
304
            $hydrator = new ObjectPropertyHydrator();
-
 
Línea 305... Línea 312...
305
            
312
            
306
            $data = [
313
            $data = [
-
 
314
                'success' => true,
-
 
315
                'data' => [
-
 
316
                    'code' => $page->code, 
-
 
317
                    'title' => $page->title,
307
                'success' => true,
318
                    'content' => $page->content,
-
 
319
                    'status' => $page->status,
-
 
320
                    'url' => $page->url,
-
 
321
                    'type' => $page->type,
308
                'data' => $hydrator->extract($page)
322
                ]
Línea 309... Línea 323...
309
            ];
323
            ];
310
            
324
            
311
            return new JsonModel($data);
325
            return new JsonModel($data);