Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 733 Rev 1044
Línea 5... Línea 5...
5
namespace LeadersLinked;
5
namespace LeadersLinked;
Línea 6... Línea 6...
6
 
6
 
7
use Laminas\Router\Http\Literal;
7
use Laminas\Router\Http\Literal;
Línea -... Línea 8...
-
 
8
use Laminas\Router\Http\Segment;
-
 
9
 
-
 
10
/*
-
 
11
 <ul class="navLinksContainer__ul--YwrCR">
-
 
12
    <li class="navLinksContainer__ul__li--HGs2x"><a href="/">INICIO</a></li>
-
 
13
    <li class="navLinksContainer__ul__li--HGs2x"><a href="/profile/my-profiles">PERFIL</a>
-
 
14
        <nav class="navLinkDropdown--dB4zr">
-
 
15
            <ul>
-
 
16
                <li><a href="/profile/my-profiles">Mis perfiles</a></li>
-
 
17
                <li><a href="/profile/microlearning">Micro Aprendizaje</a></li>
-
 
18
                <li><a href="/job/applied-jobs">Empleos que he aplicado</a></li>
-
 
19
                <li><a href="/job/saved-jobs">Empleos guardados</a></li>
-
 
20
                <li><a href="/profile/people-viewed-profile">Quién ha visto mi perfil</a></li>
-
 
21
                <li><a href="/profile/self-evaluation">Auto evaluación</a></li>
-
 
22
                <li><a href="/profile/performance-evaluation">Evaluación de desempeño</a></li>
-
 
23
            </ul>
-
 
24
        </nav>
-
 
25
    </li>
-
 
26
    <li class="navLinksContainer__ul__li--HGs2x"><a href="/connection/my-connections">RELACIONES</a>
-
 
27
        <nav class="navLinkDropdown--dB4zr">
-
 
28
            <ul>
-
 
29
                <li><a href="/connection/my-connections">Mis relaciones</a></li>
-
 
30
                <li><a href="/connection/invitations-sent">Invitaciones enviadas</a></li>
-
 
31
                <li><a href="/connection/invitations-received">Invitaciones recibidas</a></li>
-
 
32
                <li><a href="/connection/people-you-may-know">Personas que puede conocer</a></li>
-
 
33
                <li><a href="/connection/people-blocked">Personas bloqueadas</a></li>
-
 
34
            </ul>
-
 
35
        </nav>
-
 
36
     </li>
-
 
37
     <li class="navLinksContainer__ul__li--HGs2x"><a href="/company/my-companies">EMPRESAS</a>
-
 
38
        <nav class="navLinkDropdown--dB4zr">
-
 
39
            <ul>
-
 
40
                <li><a href="/company/my-companies">Mis empresas</a></li>
-
 
41
                <li><a href="/company/following-companies">Empresas que sigo</a></li>
-
 
42
                <li><a href="/company/i-work-with">Empresas donde trabajo</a></li>
-
 
43
                <li><a href="/company/requests-sent">Solicitudes Enviadas</a></li>
-
 
44
                <li><a href="/company/invitations-received">Solicitudes Recibidas</a></li>
-
 
45
            </ul>
-
 
46
        </nav>
-
 
47
      </li>
-
 
48
      <li class="navLinksContainer__ul__li--HGs2x"><a href="/group/my-groups">GRUPOS</a>
-
 
49
        <nav class="navLinkDropdown--dB4zr">
-
 
50
            <ul>
-
 
51
                <li><a href="/group/my-groups">Mis grupos</a></li>
-
 
52
                <li><a href="/group/joined-groups">Grupos unidos</a></li>
-
 
53
                <li><a href="/group/requests-sent">Solicitudes enviadas</a></li>
-
 
54
                <li><a href="/group/invitations-received">Invitaciones recibidas</a></li>
-
 
55
            </ul>
-
 
56
        </nav>
-
 
57
       </li>
-
 
58
       <li class="navLinksContainer__ul__li--HGs2x"><a href="/marketplace">MARKETPLACE</a>
-
 
59
            <nav class="navLinkDropdown--dB4zr">
-
 
60
                <ul>
-
 
61
                    <li><a href="/marketplace?entity=capsules">Cápsulas</a></li>
-
 
62
                </ul>
-
 
63
            </nav>
-
 
64
        </li>
-
 
65
     </ul>
-
 
66
     */
8
use Laminas\Router\Http\Segment;
67
 
9
 
68
 
10
return [
69
return [
11
    'navigation' => [
70
    'navigation' => [
12
        'menu' => [
71
        'menu' => [
Línea 23... Línea 82...
23
                    [
82
                    [
24
                        'label' => 'LABEL_MY_PROFILES',
83
                        'label' => 'LABEL_MY_PROFILES',
25
                        'route' => 'profile/my-profiles'
84
                        'route' => 'profile/my-profiles'
26
                    ],
85
                    ],
27
                    [
86
                    [
28
                        'label' => 'LABEL_WHO_HAS_SEEN_MY_PROFILE',
87
                        'label' => 'LABEL_JOBS_APPLIED',
29
                        'route' => 'profile/people-viewed-profile'
88
                        'route' => 'job/applied-jobs'
30
                    ],
89
                    ],
31
                    [
90
                    [
32
                        'label' => 'LABEL_SELF_EVALUATION',
91
                        'label' => 'LABEL_JOBS_SAVED',
33
                        'route' => 'profile/self-evaluation'
92
                        'route' => 'job/saved-jobs'
34
                    ],
93
                    ],
35
                    [
94
                    [
36
                        'label' => 'LABEL_PERFORMANCE_EVALUATION',
95
                        'label' => 'LABEL_WHO_HAS_SEEN_MY_PROFILE',
37
                        'route' => 'profile/performance-evaluation'
96
                        'route' => 'profile/people-viewed-profile'
38
                    ]
97
                    ],
39
                ]
98
                ]
40
            ],
99
            ],
41
            [
100
 
42
                'label' => 'LABEL_HOME',
-
 
43
                'route' => 'marketplace',
-
 
44
                'class' => 'fa fa-cubes'
-
 
45
            ],
-
 
46
            [
101
            [
47
                'label' => 'LABEL_CONNECTIONS',
102
                'label' => 'LABEL_CONNECTIONS',
48
                'route' => 'connection',
103
                'route' => 'connection',
49
                'class' => 'fa fa-plug',
104
                'class' => 'fa fa-plug',
50
                'pages' => [
105
                'pages' => [
Línea 66... Línea 121...
66
                    ],
121
                    ],
67
                    [
122
                    [
68
                        'label' => 'LABEL_PEOPLE_BLOCKED',
123
                        'label' => 'LABEL_PEOPLE_BLOCKED',
69
                        'route' => 'connection/people-blocked'
124
                        'route' => 'connection/people-blocked'
70
                    ],
125
                    ],
-
 
126
                    
-
 
127
 
71
                ]
128
                ]
72
            ],
129
            ],
73
            [
130
            [
74
                'label' => 'LABEL_COMPANIES',
131
                'label' => 'LABEL_COMPANIES',
75
                'route' => 'company',
132
                'route' => 'company',
Línea 95... Línea 152...
95
                        'label' => 'LABEL_INVITATIONS_RECEIVED',
152
                        'label' => 'LABEL_INVITATIONS_RECEIVED',
96
                        'route' => 'company/invitations-received'
153
                        'route' => 'company/invitations-received'
97
                    ]
154
                    ]
98
                ]
155
                ]
99
            ],
156
            ],
100
            [
157
 
101
                'label' => 'LABEL_JOBS',
-
 
102
                'route' => 'job',
-
 
103
                'class' => 'fa fa-briefcase',
-
 
104
                'pages' => [
-
 
105
                    [
-
 
106
                        'label' => 'LABEL_JOBS_APPLIED',
-
 
107
                        'route' => 'job/applied-jobs'
-
 
108
                    ],
-
 
109
                    [
-
 
110
                        'label' => 'LABEL_JOBS_SAVED',
-
 
111
                        'route' => 'job/saved-jobs'
-
 
112
                    ]
-
 
113
                ]
-
 
114
            ],
-
 
115
            [
158
            [
116
                'label' => 'LABEL_GROUPS',
159
                'label' => 'LABEL_GROUPS',
117
                'route' => 'group',
160
                'route' => 'group',
118
                'class' => 'fa fa-cubes',
161
                'class' => 'fa fa-cubes',
119
                'pages' => [
162
                'pages' => [
Línea 133... Línea 176...
133
                        'label' => 'LABEL_INVITATIONS_RECEIVED',
176
                        'label' => 'LABEL_INVITATIONS_RECEIVED',
134
                        'route' => 'group/invitations-received'
177
                        'route' => 'group/invitations-received'
135
                    ]
178
                    ]
136
                ]
179
                ]
137
            ],
180
            ],
-
 
181
            [
-
 
182
                'label' => 'LABEL_HOME',
-
 
183
                'route' => 'marketplace',
-
 
184
            ],
-
 
185
 
138
        /* [
186
        /* [
139
          'label' => 'LABEL_MESSAGES',
187
          'label' => 'LABEL_MESSAGES',
140
          'route' => 'inmail',
188
          'route' => 'inmail',
141
          'class' => 'fa fa-envelope',
189
          'class' => 'fa fa-envelope',
142
          ],
190
          ],