-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
99bcc95
commit 39d5d6a
Showing
546 changed files
with
5,940 additions
and
420 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion
3
...onfiguration/TCA/Overrides/pages.php.twig → ...onfiguration/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
3 changes: 2 additions & 1 deletion
3
...ation/TCA/Overrides/sys_template.php.twig → ...ation/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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 9 additions & 0 deletions
9
resources/packages/bootstrap_package/10.4/src/Resources/Public/Scss/Theme/theme.scss.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 @@ | ||
// | ||
// Variables | ||
// | ||
@import "variables"; | ||
|
||
// | ||
// Import needed Bootstrap Package Files | ||
// | ||
@import "EXT:bootstrap_package/Resources/Public/Scss/bootstrap5/theme"; |
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
File renamed without changes.
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
3 changes: 2 additions & 1 deletion
3
...uid_styled_content/ext_localconf.php.twig → ...p_package/10.4/src/ext_localconf.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
3 changes: 3 additions & 0 deletions
3
resources/packages/bootstrap_package/10.4/src/ext_tables.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,3 @@ | ||
<?php | ||
defined('TYPO3_MODE') || die('Access denied.'); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
72 changes: 72 additions & 0 deletions
72
resources/packages/bootstrap_package/11.5/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/11.5/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" | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 9 additions & 0 deletions
9
resources/packages/bootstrap_package/11.5/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" |
3 changes: 2 additions & 1 deletion
3
...onfiguration/TCA/Overrides/pages.php.twig → ...onfiguration/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
3 changes: 2 additions & 1 deletion
3
...ation/TCA/Overrides/sys_template.php.twig → ...ation/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
File renamed without changes.
File renamed without changes.
29 changes: 29 additions & 0 deletions
29
...e/11.5/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 | ||
} | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
60 changes: 60 additions & 0 deletions
60
...es/packages/bootstrap_package/11.5/src/Configuration/TypoScript/constants.typoscript.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,60 @@ | ||
###################### | ||
#### DEPENDENCIES #### | ||
###################### | ||
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:bootstrap_package/Configuration/TypoScript/constants.typoscript"> | ||
|
||
|
||
############ | ||
### PAGE ### | ||
############ | ||
page { | ||
logo { | ||
file = EXT:{{ package.extensionKey }}/Resources/Public/Images/logo.svg | ||
fileInverted = EXT:{{ package.extensionKey }}/Resources/Public/Images/logo-inverted.svg | ||
height = 52 | ||
width = 192 | ||
alt = {{ package.title }} | ||
linktitle = {{ package.title }} | ||
} | ||
favicon { | ||
file = EXT:{{ package.extensionKey }}/Resources/Public/Icons/favicon.ico | ||
} | ||
fluidtemplate { | ||
layoutRootPath = EXT:{{ package.extensionKey }}/Resources/Private/Layouts/Page/ | ||
partialRootPath = EXT:{{ package.extensionKey }}/Resources/Private/Partials/Page/ | ||
templateRootPath = EXT:{{ package.extensionKey }}/Resources/Private/Templates/Page/ | ||
} | ||
} | ||
|
||
|
||
################## | ||
### EXTENSIONS ### | ||
################## | ||
plugin.bootstrap_package { | ||
view { | ||
layoutRootPath = EXT:{{ package.extensionKey }}/Resources/Private/Layouts/ | ||
partialRootPath = EXT:{{ package.extensionKey }}/Resources/Private/Partials/ | ||
templateRootPath = EXT:{{ package.extensionKey }}/Resources/Private/Templates/ | ||
} | ||
} | ||
|
||
|
||
######################## | ||
### CONTENT ELEMENTS ### | ||
######################## | ||
plugin.bootstrap_package_contentelements { | ||
view { | ||
layoutRootPath = EXT:{{ package.extensionKey }}/Resources/Private/Layouts/ContentElements/ | ||
partialRootPath = EXT:{{ package.extensionKey }}/Resources/Private/Partials/ContentElements/ | ||
templateRootPath = EXT:{{ package.extensionKey }}/Resources/Private/Templates/ContentElements/ | ||
} | ||
} | ||
|
||
|
||
################################ | ||
### BOOTSTRAP SCSS CONSTANTS ### | ||
################################ | ||
plugin.bootstrap_package.settings.scss { | ||
primary = #eb3e4a | ||
secondary = #013859 | ||
} |
30 changes: 30 additions & 0 deletions
30
resources/packages/bootstrap_package/11.5/src/Configuration/TypoScript/setup.typoscript.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,30 @@ | ||
###################### | ||
#### DEPENDENCIES #### | ||
###################### | ||
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:bootstrap_package/Configuration/TypoScript/setup.typoscript"> | ||
|
||
|
||
############## | ||
#### PAGE #### | ||
############## | ||
page { | ||
includeCSS { | ||
theme = EXT:{{ package.extensionKey }}/Resources/Public/Scss/Theme/theme.scss | ||
} | ||
|
||
includeJSLibs { | ||
|
||
} | ||
|
||
includeJS { | ||
|
||
} | ||
|
||
includeJSFooterlibs { | ||
|
||
} | ||
|
||
includeJSFooter { | ||
{{ package.extensionKey }}_scripts = EXT:{{ package.extensionKey }}/Resources/Public/JavaScript/Dist/scripts.js | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
17 changes: 17 additions & 0 deletions
17
...rces/packages/bootstrap_package/11.5/src/Resources/Private/Language/locallang_be.xlf.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,17 @@ | ||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
<xliff version="1.0"> | ||
<file source-language="en" datatype="plaintext" original="messages" date="{{ 'now'|date('Y-m-d\TH:i:s\Z', 'UTC') }}"> | ||
<header> | ||
<authorName>{{ package.author.name }}</authorName> | ||
<authorEmail>{{ package.author.email }}</authorEmail> | ||
</header> | ||
<body> | ||
<trans-unit id="backend_layout.example"> | ||
<source>Example</source> | ||
</trans-unit> | ||
<trans-unit id="backend_layout.column.normal"> | ||
<source>Normal</source> | ||
</trans-unit> | ||
</body> | ||
</file> | ||
</xliff> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
22 changes: 22 additions & 0 deletions
22
...es/packages/bootstrap_package/11.5/src/Resources/Private/Templates/Page/Example.html.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,22 @@ | ||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true"> | ||
<f:layout name="Default" /> | ||
<f:section name="Main"> | ||
|
||
<div class="container"> | ||
<div class="alert alert-info"> | ||
<dl> | ||
<dt>Template file</dt> | ||
<dd> | ||
<code>typo3conf/ext/{{ package.extensionKey }}/Resources/Private/Templates/Page/Example.html</code> | ||
</dd> | ||
<dt>Backend Configuration</dt> | ||
<dd> | ||
<code>typo3conf/ext/{{ package.extensionKey }}/Configuration/TsConfig/Page/Mod/WebLayout/BackendLayouts/example.tsconfig</code> | ||
</dd> | ||
</dl> | ||
</div> | ||
</div> | ||
<f:cObject typoscriptObjectPath="lib.dynamicContent" data="{pageUid: '{data.uid}', colPos: '0'}" /> | ||
|
||
</f:section> | ||
</html> |
File renamed without changes.
1 change: 1 addition & 0 deletions
1
resources/packages/bootstrap_package/11.5/src/Resources/Public/Fonts/.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
...es/bootstrap_package/11.5/src/Resources/Public/Icons/BackendLayouts/example.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes.
1 change: 1 addition & 0 deletions
1
...es/packages/bootstrap_package/11.5/src/Resources/Public/Icons/logo-inverted.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
resources/packages/bootstrap_package/11.5/src/Resources/Public/Icons/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions
1
...s/packages/bootstrap_package/11.5/src/Resources/Public/Images/logo-inverted.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.