Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 13303 Rev 13304
Línea 126... Línea 126...
126
                        'description' => $record->description,
126
                        'description' => $record->description,
127
                        'status' => $record->status,
127
                        'status' => $record->status,
128
                        'actions' => [
128
                        'actions' => [
129
                            'link_edit' => $this->url()->fromRoute('development-and-content/category/edit', ['id' => $record->uuid]),
129
                            'link_edit' => $this->url()->fromRoute('development-and-content/category/edit', ['id' => $record->uuid]),
130
                            'link_delete' => $this->url()->fromRoute('development-and-content/category/delete', ['id' => $record->uuid]),
130
                            'link_delete' => $this->url()->fromRoute('development-and-content/category/delete', ['id' => $record->uuid]),
131
                           // 'link_view' => $this->url()->fromRoute('development-and-content/question/view', ['id' => $record->uuid])
-
 
132
                        ]
131
                        ]
133
                    ];
132
                    ];
Línea 134... Línea 133...
134
 
133
 
135
                    array_push($items, $item);
134
                    array_push($items, $item);
Línea 145... Línea 144...
145
 
144
 
Línea 146... Línea 145...
146
                $form = new TopicForm($this->adapter, $currentCompany->id);
145
                $form = new TopicForm($this->adapter, $currentCompany->id);
147
 
146
 
148
                $this->layout()->setTemplate('layout/layout-backend');
147
                $this->layout()->setTemplate('layout/layout-backend');
149
                $viewModel = new ViewModel();
148
                $viewModel = new ViewModel();
150
                $viewModel->setTemplate('leaders-linked/development-training-category/index.phtml');
149
                $viewModel->setTemplate('leaders-linked/development-content-category/index.phtml');
151
                $viewModel->setVariable('form', $form);
150
                $viewModel->setVariable('form', $form);
152
                return $viewModel;
151
                return $viewModel;
153
            }
152
            }