Skip to content

Commit

Permalink
database dump
Browse files Browse the repository at this point in the history
  • Loading branch information
CreateSean committed Dec 7, 2022
1 parent 7d5efae commit 1c56bc5
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 55 deletions.
111 changes: 56 additions & 55 deletions config/matrixmate.php
Original file line number Diff line number Diff line change
@@ -1,64 +1,65 @@
<?php

$globalConfig = [
'defaultTabName' => 'Content',
'defaultTabFirst' => true,
'groups' => [
[
'label' => 'Text Heavy',
'types' => ['copy'],
],
[
'label' => 'Related',
'types' => ['relatedEntries', 'fragments'],
],
[
'label' => 'Other',
'types' => ['callToAction', 'video', 'codeEmbed'],
],
],
'types' => [
'copy' => [
'tabs' => [
[
'label' => 'Settings',
'fields' => ['padding'],
]
],
],
'video' => [
'tabs' => [
[
'label' => 'Settings',
'fields' => ['padding'],
]
],
],
'relatedEntries' => [
'tabs' => [
[
'label' => 'Settings',
'fields' => ['padding'],
]
],
],
'codeEmbed' => [
'tabs' => [
[
'label' => 'Settings',
'fields' => ['padding'],
]
],
]
],
];

return [
'fields' => [
'contentBuilder' => [
'defaultTabName' => 'Content',
'defaultTabFirst' => true,
'groups' => [
[
'label' => 'Text Heavy',
'types' => ['copy'],
],
[
'label' => 'Related',
'types' => ['relatedEntries', 'fragments'],
],
[
'label' => 'Other',
'types' => ['callToAction', 'video', 'codeEmbed'],
],
],
'types' => [
'copy' => [
'tabs' => [
[
'label' => 'Settings',
'fields' => ['padding'],
]
],
],
'video' => [
'tabs' => [
[
'label' => 'Settings',
'fields' => ['padding'],
]
],
],
'relatedEntries' => [
'tabs' => [
[
'label' => 'Settings',
'fields' => ['padding'],
]
],
],
'codeEmbed' => [
'tabs' => [
[
'label' => 'Settings',
'fields' => ['padding'],
]
],
]
],

// groups and types need to be copied from above
// to apply to the fragments channel.
'section:fragments' => [
'*' => $globalConfig,
'section:fragments' => array_merge_recursive($globalConfig, [
'hiddenTypes' => ['fragments'],
],
]),
],
],
];
Binary file modified db.sql.gz
Binary file not shown.

0 comments on commit 1c56bc5

Please sign in to comment.