1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-27 06:54:31 +02:00

Flextype Box Plugin: Admin #125 #117

- Fieldsets Controller/Views implementation
This commit is contained in:
Awilum
2019-05-24 11:07:53 +03:00
parent 9d463ff4e8
commit 0e084c8634

View File

@@ -14,14 +14,14 @@ class FieldsetsController extends Controller
'fieldsets_list' => $this->fieldsets->fetchList(),
'links' => [
'fieldsets' => [
'link' => $this->router->urlFor('admin.fieldsets.index'),
'link' => $this->router->pathFor('admin.fieldsets.index'),
'title' => __('admin_fieldsets'),
'attributes' => ['class' => 'navbar-item active']
],
],
'buttons' => [
'fieldsets_add' => [
'link' => $this->router->urlFor('admin.fieldsets.add'),
'link' => $this->router->pathFor('admin.fieldsets.add'),
'title' => __('admin_create_new_fieldset'),
'attributes' => ['class' => 'float-right btn']
]