-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into production
- Loading branch information
Showing
413 changed files
with
6,570 additions
and
7 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 |
---|---|---|
|
@@ -20,6 +20,10 @@ | |
{ | ||
"name": "Susanne Moog", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Benjamin Kott", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"homepage": "https://get.typo3.org", | ||
|
@@ -35,6 +39,7 @@ | |
"ext-iconv": "*", | ||
"ext-json": "*", | ||
"ext-sqlite3": "*", | ||
"ext-zip": "*", | ||
"ext-zlib": "*", | ||
"composer/semver": "^3.3", | ||
"doctrine/collections": "^1.6", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
70 changes: 70 additions & 0 deletions
70
resources/packages/bootstrap_package/10.4/src/.editorconfig
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,70 @@ | ||
# EditorConfig is awesome: http://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
# CSS-Files | ||
[*.css] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# HTML-Files | ||
[*.html] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# TMPL-Files | ||
[*.tmpl] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# JS-Files | ||
[*.js] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# PHP-Files | ||
[*.php] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# MD-Files | ||
[*.md] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# ReST-Files | ||
[*.rst] | ||
indent_style = space | ||
indent_size = 3 | ||
|
||
# TypoScript | ||
[*.typoscript] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# YML-Files | ||
[{*.yml,*.yaml}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# package.json | ||
[package.json] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# composer.json | ||
[composer.json] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# phpstan | ||
[*.neon] | ||
indent_style = tab |
2 changes: 2 additions & 0 deletions
2
resources/packages/bootstrap_package/10.4/src/Build/.htaccess
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,2 @@ | ||
Order deny,allow | ||
Deny from all |
72 changes: 72 additions & 0 deletions
72
resources/packages/bootstrap_package/10.4/src/Build/Gruntfile.js.twig
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,72 @@ | ||
module.exports = function(grunt) { | ||
|
||
/** | ||
* Project configuration. | ||
*/ | ||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON('package.json'), | ||
paths: { | ||
root: '../', | ||
resources: '<%= paths.root %>Resources/', | ||
fonts: '<%= paths.resources %>Public/Fonts/', | ||
img: '<%= paths.resources %>Public/Images/', | ||
js: '<%= paths.resources %>Public/JavaScript/' | ||
}, | ||
banner: '/*!\n' + | ||
' * {{ package.title }} v<%= pkg.version %> (<%= pkg.homepage %>)\n' + | ||
' * Copyright 2017-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' + | ||
' * Licensed under the <%= pkg.license %> license\n' + | ||
' */\n', | ||
uglify: { | ||
all: { | ||
options: { | ||
banner: '<%= banner %>', | ||
mangle: true, | ||
compress: true, | ||
beautify: false | ||
}, | ||
files: { | ||
"<%= paths.js %>/Dist/scripts.js": [ | ||
"<%= paths.js %>Src/main.js" | ||
] | ||
} | ||
} | ||
}, | ||
imagemin: { | ||
extension: { | ||
files: [{ | ||
expand: true, | ||
cwd: '<%= paths.resources %>', | ||
src: [ | ||
'**/*.{png,jpg,gif,svg}' | ||
], | ||
dest: '<%= paths.resources %>' | ||
}] | ||
} | ||
}, | ||
watch: { | ||
options: { | ||
livereload: true | ||
}, | ||
javascript: { | ||
files: '<%= paths.js %>Src/**/*.js', | ||
tasks: ['js'] | ||
} | ||
} | ||
}); | ||
|
||
/** | ||
* Register tasks | ||
*/ | ||
grunt.loadNpmTasks('grunt-contrib-uglify'); | ||
grunt.loadNpmTasks('grunt-contrib-watch'); | ||
grunt.loadNpmTasks('grunt-contrib-imagemin'); | ||
|
||
/** | ||
* Grunt update task | ||
*/ | ||
grunt.registerTask('js', ['uglify']); | ||
grunt.registerTask('build', ['js', 'imagemin']); | ||
grunt.registerTask('default', ['build']); | ||
|
||
}; |
18 changes: 18 additions & 0 deletions
18
resources/packages/bootstrap_package/10.4/src/Build/package.json.twig
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,18 @@ | ||
{ | ||
"name": "{{ package.vendorNameAlternative }}-{{ package.packageNameAlternative }}", | ||
"description": "{{ package.description }}", | ||
"repository": { | ||
"type": "git", | ||
"url": "{{ package.repositoryUrl }}" | ||
}, | ||
"homepage": "{{ package.author.homepage }}", | ||
"author": "{{ package.author.name }}", | ||
"version": "1.0.0", | ||
"license": "GPL-2.0-or-later", | ||
"devDependencies": { | ||
"grunt": "^1.0.3", | ||
"grunt-contrib-uglify": "^4.0.0", | ||
"grunt-contrib-watch": "^1.1.0", | ||
"grunt-contrib-imagemin": "^2.0.1" | ||
} | ||
} |
2 changes: 2 additions & 0 deletions
2
resources/packages/bootstrap_package/10.4/src/Classes/.htaccess
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,2 @@ | ||
Order deny,allow | ||
Deny from all |
1 change: 1 addition & 0 deletions
1
resources/packages/bootstrap_package/10.4/src/Classes/Controller/.gitkeep
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 @@ | ||
|
1 change: 1 addition & 0 deletions
1
resources/packages/bootstrap_package/10.4/src/Classes/Domain/.gitkeep
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 @@ | ||
|
1 change: 1 addition & 0 deletions
1
resources/packages/bootstrap_package/10.4/src/Classes/Domain/Model/.gitkeep
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 @@ | ||
|
1 change: 1 addition & 0 deletions
1
resources/packages/bootstrap_package/10.4/src/Classes/Domain/Repository/.gitkeep
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 @@ | ||
|
1 change: 1 addition & 0 deletions
1
resources/packages/bootstrap_package/10.4/src/Classes/ViewHelpers/.gitkeep
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 @@ | ||
|
2 changes: 2 additions & 0 deletions
2
resources/packages/bootstrap_package/10.4/src/Configuration/.htaccess
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,2 @@ | ||
Order deny,allow | ||
Deny from all |
9 changes: 9 additions & 0 deletions
9
resources/packages/bootstrap_package/10.4/src/Configuration/RTE/Default.yaml.twig
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,9 @@ | ||
imports: | ||
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Processing.yaml" } | ||
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Base.yaml" } | ||
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Plugins.yaml" } | ||
- { resource: "EXT:bootstrap_package/Configuration/RTE/Default.yaml" } | ||
|
||
editor: | ||
config: | ||
contentsCss: "EXT:bootstrap_package/Resources/Public/Css/bootstrap4-rte.min.css" |
20 changes: 20 additions & 0 deletions
20
resources/packages/bootstrap_package/10.4/src/Configuration/TCA/Overrides/pages.php.twig
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,20 @@ | ||
<?php | ||
defined('TYPO3_MODE') || die('Access denied.'); | ||
call_user_func(function() | ||
{ | ||
/** | ||
* Temporary variables | ||
*/ | ||
$extensionKey = '{{ package.extensionKey }}'; | ||
/** | ||
* Default PageTS for {{ package.packageName }} | ||
*/ | ||
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::registerPageTSConfigFile( | ||
$extensionKey, | ||
'Configuration/TsConfig/Page/All.tsconfig', | ||
'{{ package.title }}' | ||
); | ||
}); |
20 changes: 20 additions & 0 deletions
20
...ces/packages/bootstrap_package/10.4/src/Configuration/TCA/Overrides/sys_template.php.twig
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,20 @@ | ||
<?php | ||
defined('TYPO3_MODE') || die('Access denied.'); | ||
call_user_func(function() | ||
{ | ||
/** | ||
* Temporary variables | ||
*/ | ||
$extensionKey = '{{ package.extensionKey }}'; | ||
/** | ||
* Default TypoScript for {{ package.packageName }} | ||
*/ | ||
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile( | ||
$extensionKey, | ||
'Configuration/TypoScript', | ||
'{{ package.title }}' | ||
); | ||
}); |
7 changes: 7 additions & 0 deletions
7
resources/packages/bootstrap_package/10.4/src/Configuration/TsConfig/Page/All.tsconfig.twig
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,7 @@ | ||
# | ||
# PageTS for {{ package.title }} | ||
# | ||
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:{{ package.extensionKey }}/Configuration/TsConfig/Page/RTE.tsconfig"> | ||
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:{{ package.extensionKey }}/Configuration/TsConfig/Page/TCEFORM.tsconfig"> | ||
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:{{ package.extensionKey }}/Configuration/TsConfig/Page/TCEMAIN.tsconfig"> | ||
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:{{ package.extensionKey }}/Configuration/TsConfig/Page/Mod/WebLayout/BackendLayouts.tsconfig"> |
4 changes: 4 additions & 0 deletions
4
...p_package/10.4/src/Configuration/TsConfig/Page/Mod/WebLayout/BackendLayouts.tsconfig.twig
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,4 @@ | ||
# | ||
# BACKENDLAYOUTS | ||
# | ||
<INCLUDE_TYPOSCRIPT: source="DIR:EXT:{{ package.extensionKey }}/Configuration/TsConfig/Page/Mod/WebLayout/BackendLayouts" extensions="tsconfig"> |
29 changes: 29 additions & 0 deletions
29
...e/10.4/src/Configuration/TsConfig/Page/Mod/WebLayout/BackendLayouts/example.tsconfig.twig
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,29 @@ | ||
# | ||
# BACKENDLAYOUT: EXAMPLE | ||
# | ||
mod { | ||
web_layout { | ||
BackendLayouts { | ||
example { | ||
title = LLL:EXT:{{ package.extensionKey }}/Resources/Private/Language/locallang_be.xlf:backend_layout.example | ||
config { | ||
backend_layout { | ||
colCount = 1 | ||
rowCount = 1 | ||
rows { | ||
1 { | ||
columns { | ||
1 { | ||
name = LLL:EXT:{{ package.extensionKey }}/Resources/Private/Language/locallang_be.xlf:backend_layout.column.normal | ||
colPos = 0 | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
icon = EXT:{{ package.extensionKey }}/Resources/Public/Icons/BackendLayouts/example.svg | ||
} | ||
} | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
resources/packages/bootstrap_package/10.4/src/Configuration/TsConfig/Page/RTE.tsconfig.twig
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 @@ | ||
############# | ||
#### RTE #### | ||
############# | ||
RTE { | ||
default { | ||
preset = {{ package.extensionKey }} | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...ces/packages/bootstrap_package/10.4/src/Configuration/TsConfig/Page/TCEFORM.tsconfig.twig
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,11 @@ | ||
# | ||
# TCEFORM | ||
# | ||
TCEFORM { | ||
pages { | ||
|
||
} | ||
tt_content { | ||
|
||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
...ces/packages/bootstrap_package/10.4/src/Configuration/TsConfig/Page/TCEMAIN.tsconfig.twig
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,6 @@ | ||
# | ||
# TCEMAIN | ||
# | ||
TCEMAIN { | ||
|
||
} |
Oops, something went wrong.