├── .github
└── FUNDING.yml
├── _config
└── config.yml
├── _config.php
├── CONTRIBUTING.md
├── templates
├── DNADesign
│ └── Elemental
│ │ └── Layout
│ │ └── TabElementHolder.ss
└── Dynamic
│ └── Elements
│ └── Tabset
│ └── Element
│ └── ElementTabSet.ss
├── .editorconfig
├── phpunit.xml.dist
├── .scrutinizer.yml
├── phpcs.xml.dist
├── .travis.yml
├── composer.json
├── LICENSE.md
├── CHANGELOG.md
├── src
└── Element
│ ├── ElementTabSet.php
│ └── TabElement.php
└── README.md
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: [dynamic]
2 |
--------------------------------------------------------------------------------
/_config/config.yml:
--------------------------------------------------------------------------------
1 | ---
2 | Name: silverstripeelemental-tabsetconfig
3 | ---
4 |
--------------------------------------------------------------------------------
/_config.php:
--------------------------------------------------------------------------------
1 | active show<% end_if %>" id="tab-{$ID}" role="tabpanel" aria-labelledby="tab-button-{$ID}">
2 | $Element
3 |
4 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | # For more information about the properties used in this file,
2 | # please see the EditorConfig documentation:
3 | # http://editorconfig.org
4 |
5 | [*]
6 | charset = utf-8
7 | end_of_line = lf
8 | indent_size = 4
9 | indent_style = space
10 | insert_final_newline = true
11 | trim_trailing_whitespace = true
12 |
13 | [{*.yml,package.json}]
14 | indent_size = 2
15 |
16 | # The indent size used in the package.json file cannot be changed:
17 | # https://github.com/npm/npm/pull/3180#issuecomment-16336516
18 |
--------------------------------------------------------------------------------
/phpunit.xml.dist:
--------------------------------------------------------------------------------
1 |