-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add development branch for Article Bundle 3.0
- Loading branch information
1 parent
5e349a7
commit 6c9216a
Showing
5 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,12 @@ | |
"docs": "https://docs.sulu.io/", | ||
"chat": "https://sulu.io/services-and-support#chat" | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "[email protected]:alexander-schranz/SuluArticleBundle.git" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.1", | ||
"ext-ctype": "*", | ||
|
@@ -40,6 +46,9 @@ | |
"scheb/2fa-email": "^6.1", | ||
"scheb/2fa-trusted-device": "^6.1", | ||
"stof/doctrine-extensions-bundle": "^1.8", | ||
"sulu/article-bundle": "dev-feature/content-article-repository as 3.0.0", | ||
"sulu/content-bundle": "^0.7.1", | ||
"sulu/messenger": "^0.2.2", | ||
"sulu/sulu": "~2.6.0@dev", | ||
"symfony/config": "^6.3", | ||
"symfony/dotenv": "^6.3", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
sulu_article: | ||
storage: 'experimental' | ||
|
||
sulu_core: | ||
content: | ||
structure: | ||
default_type: | ||
article: 'article' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?xml version="1.0" ?> | ||
<template xmlns="http://schemas.sulu.io/template/template" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://schemas.sulu.io/template/template http://schemas.sulu.io/template/template-1.0.xsd"> | ||
|
||
<key>article</key> | ||
|
||
<view>articles/article</view> | ||
<controller>Sulu\Bundle\WebsiteBundle\Controller\DefaultController::indexAction</controller> | ||
<cacheLifetime>604800</cacheLifetime> | ||
|
||
<meta> | ||
<title lang="en">Article</title> | ||
<title lang="de">Artikel</title> | ||
</meta> | ||
|
||
<properties> | ||
<property name="title" type="text_line" mandatory="true"> | ||
<meta> | ||
<title lang="en">Title</title> | ||
<title lang="de">Titel</title> | ||
</meta> | ||
<params> | ||
<param name="headline" value="true"/> | ||
</params> | ||
|
||
<tag name="sulu.rlp.part"/> | ||
</property> | ||
|
||
<property name="route" type="resource_locator"> | ||
<meta> | ||
<title lang="en">Resourcelocator</title> | ||
<title lang="de">Adresse</title> | ||
</meta> | ||
|
||
<tag name="sulu.rlp"/> | ||
</property> | ||
|
||
<property name="article" type="text_editor"> | ||
<meta> | ||
<title lang="en">Article</title> | ||
<title lang="de">Artikel</title> | ||
</meta> | ||
</property> | ||
</properties> | ||
</template> |