Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEATURE] Add sets for TYPO3 13.4 #318

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Configuration/Sets/Expert/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
name: t3g/blog-expert
label: "TYPO3 Blog (Expert)"
dependencies:
- t3g/blog-shared
1 change: 1 addition & 0 deletions Configuration/Sets/Expert/constants.typoscript
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'EXT:blog/Configuration/TypoScript/Static/constants.typoscript'
1 change: 1 addition & 0 deletions Configuration/Sets/Expert/setup.typoscript
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'EXT:blog/Configuration/TypoScript/Static/setup.typoscript'
4 changes: 4 additions & 0 deletions Configuration/Sets/Integration/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
name: t3g/blog-integration
label: "TYPO3 Blog (Integration)"
dependencies:
- t3g/blog-shared
1 change: 1 addition & 0 deletions Configuration/Sets/Integration/constants.typoscript
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'EXT:blog/Configuration/TypoScript/Integration/constants.typoscript'
1 change: 1 addition & 0 deletions Configuration/Sets/Integration/setup.typoscript
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'EXT:blog/Configuration/TypoScript/Integration/setup.typoscript'
2 changes: 2 additions & 0 deletions Configuration/Sets/Shared/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
name: t3g/blog-shared
label: "TYPO3 Blog (Shared)"
1 change: 1 addition & 0 deletions Configuration/Sets/Shared/page.tsconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'EXT:blog/Configuration/TsConfig/Page/All.tsconfig';
31 changes: 31 additions & 0 deletions Configuration/Sets/Shared/settings.definitions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
settings:
plugin.tx_blog.settings.blogUid:
label: LLL:EXT:blog/Resources/Private/Language/locallang.xlf:constantEditor.blogUid
description: ""
type: int
default: 0
plugin.tx_blog.settings.authorUid:
label: LLL:EXT:blog/Resources/Private/Language/locallang.xlf:constantEditor.authorUid
description: ""
type: int
default: 0
plugin.tx_blog.settings.categoryUid:
label: LLL:EXT:blog/Resources/Private/Language/locallang.xlf:constantEditor.categoryUid
description: ""
type: int
default: 0
plugin.tx_blog.settings.tagUid:
label: LLL:EXT:blog/Resources/Private/Language/locallang.xlf:constantEditor.tagUid
description: ""
type: int
default: 0
plugin.tx_blog.settings.archiveUid:
label: LLL:EXT:blog/Resources/Private/Language/locallang.xlf:constantEditor.archiveUid
description: ""
type: int
default: 0
plugin.tx_blog.settings.storagePid:
label: LLL:EXT:blog/Resources/Private/Language/locallang.xlf:constantEditor.storagePid
description: ""
type: int
default: 0
5 changes: 5 additions & 0 deletions Configuration/Sets/Standalone/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name: t3g/blog-standalone
label: "TYPO3 Blog (Standalone)"
dependencies:
- typo3/fluid-styled-content
- t3g/blog-shared
1 change: 1 addition & 0 deletions Configuration/Sets/Standalone/constants.typoscript
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'EXT:blog/Configuration/TypoScript/Standalone/constants.typoscript'
1 change: 1 addition & 0 deletions Configuration/Sets/Standalone/setup.typoscript
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'EXT:blog/Configuration/TypoScript/Standalone/setup.typoscript'
14 changes: 13 additions & 1 deletion Documentation/Setup/Manual/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Prerequisites:

.. image:: manual-1.png

2. Add the static template to your existing template
2. Add the static template to your existing template or import a configuration set

**Option A:** Add the static template to your existing template record

Expand All @@ -39,6 +39,18 @@ Prerequisites:
# Constants
@import "EXT:blog/Configuration/TypoScript/Integration/constants.typoscript"

**Option C:** Add the blog configuration set of your choice (TYPO3 13.4 and up)

.. image:: manual-sets.png

Either include the set in your site configuration or directly within your own set in your site extension.

.. code-block:: yaml
:linenos:

dependencies:
- t3g/blog-integration

.. tip::

It is recommended to use the "Integration" template to use the prepared page
Expand Down
Binary file added Documentation/Setup/Manual/manual-sets.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.