This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Switch to confvals for mod.web_layout
* use confvals * correct indentation * correct header levels * Give headers to examples No other text changes made releases: main, 12.4, 11.5
- Loading branch information
1 parent
4457b09
commit 4a88c0a
Showing
2 changed files
with
34 additions
and
34 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
32 changes: 32 additions & 0 deletions
32
Documentation/PageTsconfig/Mod/_backendLayouts-example.tsconfig
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,32 @@ | ||
mod.web_layout.BackendLayouts { | ||
exampleKey { | ||
title = Example | ||
icon = EXT:example_extension/Resources/Public/Images/BackendLayouts/default.gif | ||
config { | ||
backend_layout { | ||
colCount = 1 | ||
rowCount = 2 | ||
rows { | ||
1 { | ||
columns { | ||
1 { | ||
name = LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:colPos.I.3 | ||
colPos = 3 | ||
colspan = 1 | ||
} | ||
} | ||
} | ||
2 { | ||
columns { | ||
1 { | ||
name = Main | ||
colPos = 0 | ||
colspan = 1 | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |