File tree Expand file tree Collapse file tree 8 files changed +27
-40
lines changed Expand file tree Collapse file tree 8 files changed +27
-40
lines changed Original file line number Diff line number Diff line change 2
2
jobs : 10
3
3
cache : .phplint.cache
4
4
extensions :
5
- - php
5
+ - php
6
6
exclude :
7
- - .build
7
+ - .build
Original file line number Diff line number Diff line change @@ -4,25 +4,21 @@ routeEnhancers:
4
4
extension : Blog
5
5
plugin : Archive
6
6
routes :
7
- -
8
- routePath : ' /archive/{year}'
7
+ - routePath : ' /archive/{year}'
9
8
_controller : ' Post::listPostsByDate'
10
9
_arguments :
11
10
year : year
12
- -
13
- routePath : ' /archive/{year}/page-{page}'
11
+ - routePath : ' /archive/{year}/page-{page}'
14
12
_controller : ' Post::listPostsByDate'
15
13
_arguments :
16
14
year : year
17
15
page : ' currentPage'
18
- -
19
- routePath : ' /archive/{year}/{month}'
16
+ - routePath : ' /archive/{year}/{month}'
20
17
_controller : ' Post::listPostsByDate'
21
18
_arguments :
22
19
year : year
23
20
month : month
24
- -
25
- routePath : ' /archive/{year}/{month}/page-{page}'
21
+ - routePath : ' /archive/{year}/{month}/page-{page}'
26
22
_controller : ' Post::listPostsByDate'
27
23
_arguments :
28
24
year : year
@@ -57,8 +53,7 @@ routeEnhancers:
57
53
november : 11
58
54
december : 12
59
55
localeMap :
60
- -
61
- locale : ' de_.*'
56
+ - locale : ' de_.*'
62
57
map :
63
58
januar : 1
64
59
februar : 2
@@ -72,8 +67,7 @@ routeEnhancers:
72
67
oktober : 10
73
68
november : 11
74
69
dezember : 12
75
- -
76
- locale : ' fr_.*'
70
+ - locale : ' fr_.*'
77
71
map :
78
72
janvier : 1
79
73
fevrier : 2
Original file line number Diff line number Diff line change @@ -4,13 +4,11 @@ routeEnhancers:
4
4
extension : Blog
5
5
plugin : AuthorPosts
6
6
routes :
7
- -
8
- routePath : ' /author/{author_title}'
7
+ - routePath : ' /author/{author_title}'
9
8
_controller : ' Post::listPostsByAuthor'
10
9
_arguments :
11
10
author_title : author
12
- -
13
- routePath : ' /author/{author_title}/page-{page}'
11
+ - routePath : ' /author/{author_title}/page-{page}'
14
12
_controller : ' Post::listPostsByAuthor'
15
13
_arguments :
16
14
author_title : author
Original file line number Diff line number Diff line change @@ -4,13 +4,11 @@ routeEnhancers:
4
4
extension : Blog
5
5
plugin : Category
6
6
routes :
7
- -
8
- routePath : ' /category/{category_title}'
7
+ - routePath : ' /category/{category_title}'
9
8
_controller : ' Post::listPostsByCategory'
10
9
_arguments :
11
10
category_title : category
12
- -
13
- routePath : ' /category/{category_title}/page-{page}'
11
+ - routePath : ' /category/{category_title}/page-{page}'
14
12
_controller : ' Post::listPostsByCategory'
15
13
_arguments :
16
14
category_title : category
Original file line number Diff line number Diff line change @@ -4,8 +4,7 @@ routeEnhancers:
4
4
extension : Blog
5
5
plugin : Posts
6
6
routes :
7
- -
8
- routePath : ' /page-{page}'
7
+ - routePath : ' /page-{page}'
9
8
_controller : ' Post::listRecentPosts'
10
9
_arguments :
11
10
page : ' currentPage'
Original file line number Diff line number Diff line change @@ -4,13 +4,11 @@ routeEnhancers:
4
4
extension : Blog
5
5
plugin : Tag
6
6
routes :
7
- -
8
- routePath : ' /tag/{tag_title}'
7
+ - routePath : ' /tag/{tag_title}'
9
8
_controller : ' Post::listPostsByTag'
10
9
_arguments :
11
10
tag_title : tag
12
- -
13
- routePath : ' /tag/{tag_title}/page-{page}'
11
+ - routePath : ' /tag/{tag_title}/page-{page}'
14
12
_controller : ' Post::listPostsByTag'
15
13
_arguments :
16
14
tag_title : tag
Original file line number Diff line number Diff line change 3
3
# imports:
4
4
# - { resource: "EXT:blog/Configuration/Routes/Default.yaml" }
5
5
imports :
6
- - { resource: " EXT:blog/Configuration/Routes/BlogCategory.yaml" }
7
- - { resource: " EXT:blog/Configuration/Routes/BlogTag.yaml" }
8
- - { resource: " EXT:blog/Configuration/Routes/BlogArchive.yaml" }
9
- - { resource: " EXT:blog/Configuration/Routes/BlogAuthorPosts.yaml" }
10
- - { resource: " EXT:blog/Configuration/Routes/BlogFeedWidget.yaml" }
11
- - { resource: " EXT:blog/Configuration/Routes/BlogPosts.yaml" }
6
+ - { resource: ' EXT:blog/Configuration/Routes/BlogCategory.yaml' }
7
+ - { resource: ' EXT:blog/Configuration/Routes/BlogTag.yaml' }
8
+ - { resource: ' EXT:blog/Configuration/Routes/BlogArchive.yaml' }
9
+ - { resource: ' EXT:blog/Configuration/Routes/BlogAuthorPosts.yaml' }
10
+ - { resource: ' EXT:blog/Configuration/Routes/BlogFeedWidget.yaml' }
11
+ - { resource: ' EXT:blog/Configuration/Routes/BlogPosts.yaml' }
Original file line number Diff line number Diff line change 1
1
services :
2
- _defaults :
3
- autowire : true
4
- autoconfigure : true
5
- public : false
2
+ _defaults :
3
+ autowire : true
4
+ autoconfigure : true
5
+ public : false
6
6
7
- T3G\AgencyPack\Blog\ :
8
- resource : ' ../Classes/*'
7
+ T3G\AgencyPack\Blog\ :
8
+ resource : ' ../Classes/*'
You can’t perform that action at this time.
0 commit comments