-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule.config.php
63 lines (63 loc) · 2.59 KB
/
module.config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
return [
'router' => [
'routes' => [
'zfcuser' => [
'child_routes' => [
'profilepicture' => [
'type' => 'Literal',
'options' => [
'route' => '/profile-picture',
'defaults' => [
'controller' => 'Eye4web\ZfcUser\ProfilePicture\Controller\ZfcUserProfilePictureController',
'action' => 'index',
],
],
'may_terminate' => true,
'child_routes' => [
'change' => [
'type' => 'Literal',
'options' => [
'route' => '/change',
],
'may_terminate' => false,
'child_routes' => [
'upload' => [
'type' => 'Literal',
'options' => [
'route' => '/upload',
'defaults' => [
'action' => 'changeUpload',
],
],
],
]
],
]
],
]
]
],
],
'service_manager' => array(
'factories' => array(
'Eye4web\ZfcUser\ProfilePicture\Form\UploadProfilePictureForm'
=> 'Eye4web\ZfcUser\ProfilePicture\Factory\Form\UploadProfilePictureFormFactory',
'Eye4web\ZfcUser\ProfilePicture\Options\ModuleOptions'
=> 'Eye4web\ZfcUser\ProfilePicture\Factory\Options\ModuleOptionsFactory',
'Eye4web\ZfcUser\ProfilePicture\Service\ProfilePictureService'
=> 'Eye4web\ZfcUser\ProfilePicture\Factory\Service\ProfilePictureServiceFactory'
),
),
'controllers' => array(
'factories' => [
'Eye4web\ZfcUser\ProfilePicture\Controller\ZfcUserProfilePictureController'
=> 'Eye4web\ZfcUser\ProfilePicture\Factory\Controller\ZfcUserProfilePictureControllerFactory'
]
),
'view_manager' => [
'template_path_stack' => [
__DIR__ . '/../view',
],
],
];